added brochure but doesn't show up
This commit is contained in:
11
debug_toolbar/js/toolbar.template.js
Normal file
11
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