We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39f14ac commit 79bfc57Copy full SHA for 79bfc57
debug_toolbar/static/debug_toolbar/js/toolbar.js
@@ -213,12 +213,12 @@
213
$('#djDebugToolbar li').removeClass('djdt-active');
214
// finally close toolbar
215
$('#djDebugToolbar').hide('fast');
216
- handle = $('#djDebugToolbarHandle')
+ handle = $('#djDebugToolbarHandle');
217
handle.show();
218
// set handle position
219
var handleTop = djdt.cookie.get('djdttop');
220
if (handleTop) {
221
- handleTop = Math.min(handleTop, window.innerHeight - handle.outerHeight() - 10)
+ handleTop = Math.min(handleTop, window.innerHeight - handle.outerHeight() - 10);
222
handle.css({top: handleTop + 'px'});
223
}
224
// Unbind keydown
0 commit comments