diff options
author | Rob Loach <robloach@gmail.com> | 2014-12-15 12:51:24 -0500 |
---|---|---|
committer | Rob Loach <robloach@gmail.com> | 2014-12-15 12:51:24 -0500 |
commit | baea88a270eb2260a7b95d11e62164d9068f705f (patch) | |
tree | 52eaafebf287d12f441ae9ba08666312d3091c72 /test | |
parent | a8bbc28c950093b4192060f1751744c7f81c145e (diff) | |
download | jquery-once-baea88a270eb2260a7b95d11e62164d9068f705f.zip jquery-once-baea88a270eb2260a7b95d11e62164d9068f705f.tar.gz jquery-once-baea88a270eb2260a7b95d11e62164d9068f705f.tar.bz2 |
Fix jQuery usage to use local copies rather than the CDN versions
Diffstat (limited to 'test')
-rw-r--r-- | test/index.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/index.html b/test/index.html index 038db22..6a0293f 100644 --- a/test/index.html +++ b/test/index.html @@ -2,7 +2,7 @@ <html> <head> <title>jQuery Once - Test Suite</title> - <link rel="stylesheet" href="http://code.jquery.com/qunit/qunit-1.11.0.css"> + <link rel="stylesheet" href="../node_modules/qunitjs/qunit/qunit.css"> </head> <body id="body"> <div id="qunit"></div> @@ -31,8 +31,8 @@ </div> - <script src="http://code.jquery.com/jquery-2.1.1.js"></script> - <script src="http://code.jquery.com/qunit/qunit-1.11.0.js"></script> + <script src="../node_modules/jquery/dist/jquery.js"></script> + <script src="../node_modules/qunitjs/qunit/qunit.js"></script> <script src="../jquery.once.js"></script> <script src="test.js"></script> </body> |