aboutsummaryrefslogtreecommitdiffstats
path: root/example/templates/jquery
diff options
context:
space:
mode:
authorAymeric Augustin2013-10-14 22:19:05 +0200
committerAymeric Augustin2013-10-14 23:30:04 +0200
commitf8538b692e0b209015e95655591be4f6bb3eec33 (patch)
tree5c36d4363f733a811ee95f85ba40a357e6851cc4 /example/templates/jquery
parentf4699b2333aa42024fce0f75c33cec7412747faf (diff)
downloaddjango-debug-toolbar-f8538b692e0b209015e95655591be4f6bb3eec33.tar.bz2
Update versions of JavaScript libraries.
Use Google's hosted libraries instead of vendoring. This is just for testing purposes and browser caching will help after the first access.
Diffstat (limited to 'example/templates/jquery')
-rw-r--r--example/templates/jquery/index.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/example/templates/jquery/index.html b/example/templates/jquery/index.html
index 9cab242..20665c2 100644
--- a/example/templates/jquery/index.html
+++ b/example/templates/jquery/index.html
@@ -1,12 +1,12 @@
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
- <title>Old jQuery Test</title>
+ <title>jQuery Test</title>
<style>
.hide {display:none;}
#v {font-weight:bold;}
</style>
- <script type="text/javascript" charset="utf-8" src="{{ STATIC_URL }}/js/jquery.js"></script>
+ <script src="//ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$('p.hide').show();