diff options
| author | Thomas Grainger | 2012-08-20 13:35:46 +0100 | 
|---|---|---|
| committer | Thomas Grainger | 2012-08-20 13:35:46 +0100 | 
| commit | 189668eadd3f47d8c4a03ad2953b25a3a475a127 (patch) | |
| tree | 13966da3eae4b2a2d22d895e83ba66a885740778 /example/templates/mootools | |
| parent | 119874f649e67e04ded3847fc166b9798af26a78 (diff) | |
| download | django-debug-toolbar-189668eadd3f47d8c4a03ad2953b25a3a475a127.tar.bz2 | |
use links to static files rather than direct inclusion, Fixes #307
Diffstat (limited to 'example/templates/mootools')
| -rw-r--r-- | example/templates/mootools/index.html | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/example/templates/mootools/index.html b/example/templates/mootools/index.html index fa12abe..dde019d 100644 --- a/example/templates/mootools/index.html +++ b/example/templates/mootools/index.html @@ -5,7 +5,7 @@  	<style>  	.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" src="{{ STATIC_URL }}/js/mootools.js"></script>  	<script type="text/javascript">  		window.addEvent('domready', function() {  			$$('p.hide').setStyle('display', 'block'); | 
