Skip to content

Commit 67c855a

Browse files
committed
Fix JS regression in the template panel.
It was introduced during last week-end's large renaming.
1 parent c482278 commit 67c855a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

debug_toolbar/static/debug_toolbar/js/toolbar.template.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
var uarr = String.fromCharCode(0x25b6),
99
darr = String.fromCharCode(0x25bc);
1010

11-
$('#djDebugTemplatePanel a.djTemplateShowContext').on('click', function() {
11+
$('a.djTemplateShowContext').on('click', function() {
1212
var arrow = $(this).children('.toggleArrow');
1313
arrow.html(arrow.html() == uarr ? darr : uarr);
1414
$(this).parent().next().toggle();

0 commit comments

Comments
 (0)