aboutsummaryrefslogtreecommitdiff
path: root/js/tests/index.html
diff options
context:
space:
mode:
authorXhmikosR <[email protected]>2018-03-21 12:00:13 +0200
committerXhmikosR <[email protected]>2018-03-21 12:15:47 +0200
commit2cd700313ddea235086e8fa2c93ce9f9e40cdd40 (patch)
tree1560348d969c1da33803b24d1fbeb04edebcbaab /js/tests/index.html
parentf5e16ceccc477a0a8df428e37f8a97319e3ed483 (diff)
downloadbootstrap-2cd700313ddea235086e8fa2c93ce9f9e40cdd40.tar.xz
bootstrap-2cd700313ddea235086e8fa2c93ce9f9e40cdd40.zip
Remove the local jquery-1.9.1.min.js.
Diffstat (limited to 'js/tests/index.html')
-rw-r--r--js/tests/index.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/js/tests/index.html b/js/tests/index.html
index 4b10c2169..f48ce44eb 100644
--- a/js/tests/index.html
+++ b/js/tests/index.html
@@ -12,9 +12,9 @@
// get jquery param from the query string.
var jQueryVersion = location.search.match(/[?&]jquery=(.*?)(?=&|$)/)
- // If a version was specified, use that version from our vendor folder
+ // If a version was specified, use that version from jQuery CDN
if (jQueryVersion) {
- path = 'vendor/jquery-' + jQueryVersion[1] + '.min.js'
+ path = 'https://code.jquery.com/jquery-' + jQueryVersion[1] + '.min.js'
}
document.write('<script src="' + path + '"><\/script>')
}())