mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-19 14:32:16 +00:00
Fixed incorrect url on bootstrap fonts.
Fixed missing static files in repo
This commit is contained in:
11
static/debug_toolbar/js/toolbar.template.js
Normal file
11
static/debug_toolbar/js/toolbar.template.js
Normal file
@@ -0,0 +1,11 @@
|
||||
(function ($) {
|
||||
var uarr = String.fromCharCode(0x25b6),
|
||||
darr = String.fromCharCode(0x25bc);
|
||||
|
||||
$('a.djTemplateShowContext').on('click', function() {
|
||||
var arrow = $(this).children('.toggleArrow');
|
||||
arrow.html(arrow.html() == uarr ? darr : uarr);
|
||||
$(this).parent().next().toggle();
|
||||
return false;
|
||||
});
|
||||
})(djdt.jQuery);
|
||||
Reference in New Issue
Block a user