aboutsummaryrefslogtreecommitdiffstats
path: root/example
diff options
context:
space:
mode:
authorDavid Cramer2011-01-03 17:40:05 -0800
committerDavid Cramer2011-01-03 17:40:05 -0800
commite1f06b1ae3d518691dcff3a834441355580dcf1e (patch)
treebbf15e9e19da48261de76b7807a1f91a0dc1f18f /example
parentb240bbbee8fa1a2f455e3844b00641391b9af2a0 (diff)
parent8cb8abae8cec44909947dbe54e1ed644deeecbd6 (diff)
downloaddjango-debug-toolbar-e1f06b1ae3d518691dcff3a834441355580dcf1e.tar.bz2
Merge branch 'master' of http://github.com/robhudson/django-debug-toolbar
Diffstat (limited to 'example')
-rw-r--r--example/templates/jquery/index.html2
-rw-r--r--example/templates/mootools/index.html2
-rw-r--r--example/templates/prototype/index.html2
3 files changed, 3 insertions, 3 deletions
diff --git a/example/templates/jquery/index.html b/example/templates/jquery/index.html
index 419f348..61b3cbe 100644
--- a/example/templates/jquery/index.html
+++ b/example/templates/jquery/index.html
@@ -7,7 +7,7 @@
#v {font-weight:bold;}
</style>
<script type="text/javascript" charset="utf-8" src="{{ MEDIA_URL }}/js/jquery.js"></script>
- <script type="text/javascript" charset="utf-8">
+ <script type="text/javascript">
$(document).ready(function() {
$('p.hide').show();
$('#v').append($.fn.jquery);
diff --git a/example/templates/mootools/index.html b/example/templates/mootools/index.html
index 1dac10c..fa12abe 100644
--- a/example/templates/mootools/index.html
+++ b/example/templates/mootools/index.html
@@ -6,7 +6,7 @@
.hide {display:none;}
</style>
<script type="text/javascript" charset="utf-8" src="{{ MEDIA_URL }}/js/mootools.js"></script>
- <script type="text/javascript" charset="utf-8">
+ <script type="text/javascript">
window.addEvent('domready', function() {
$$('p.hide').setStyle('display', 'block');
});
diff --git a/example/templates/prototype/index.html b/example/templates/prototype/index.html
index c8fefc3..bcc3141 100644
--- a/example/templates/prototype/index.html
+++ b/example/templates/prototype/index.html
@@ -6,7 +6,7 @@
.hide {display:none;}
</style>
<script type="text/javascript" charset="utf-8" src="{{ MEDIA_URL }}/js/prototype.js"></script>
- <script type="text/javascript" charset="utf-8">
+ <script type="text/javascript">
document.observe('dom:loaded', function() {
$('showme').removeClassName('hide');
});