aboutsummaryrefslogtreecommitdiffstats
path: root/example/templates/jquery
diff options
context:
space:
mode:
authorAymeric Augustin2013-10-14 14:30:18 -0700
committerAymeric Augustin2013-10-14 14:30:18 -0700
commit188682a4bbb06e1181d30d624ec37f727e8f6a5e (patch)
tree7226ed441ddc5b849432637fb08a0ca9d5995122 /example/templates/jquery
parent87c314de8ff024d17b0a8eebb853e203e375fc12 (diff)
parent1af4317555c3c1d622f8811bf9b1517d409bfb55 (diff)
downloaddjango-debug-toolbar-188682a4bbb06e1181d30d624ec37f727e8f6a5e.tar.bz2
Merge pull request #408 from aaugustin/modernize-example-project
Modernize example project. Fix #406.
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();