Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

clicked "hide" on django debug toolbar and it completely disappeared from Firefox

Currently using Django 1.6, south and django-debug-toolbar 1.0.1

Today I clicked 'hide' and it completely disappeared, it did not revert to the little tab on the right hand corner of the screen. This happens on and Firefox but not on Chrome or Opera. Firefox don't have any ad-blockers or anything like that installed.

EDIT: Firefox 'private windows' don't have this problem either. The only extensions I have installed are 'firebug', 'pagespeed', 'yslow' and 'pocket'.

I searched for it in firebug to see if it is still there and this is what I found:

<div id="djDebugToolbar" style="display: none;">

When I delete the style="display: none;" tag within Firebug (or change it to style="display: block;") then the toolbar comes back, when I click hide then the toolbar disappears and the style="display:none;" returns.

like image 496
user1026169 Avatar asked Mar 09 '14 12:03

user1026169


1 Answers

I was having the same problem, but then with Chrome instead of Firefox.

In Chrome I clicked 'hide' once and I couldn't see the toolbar any longer. In Firefox, IE or Chrome's private browsing mode, the toolbar was shown without an issue.

Can you try cleaning your browser's cookies (or at least the ones for 127.0.0.1 or the host you're trying to see DJDT on)? For me, that fixed the issue.

like image 72
SaeX Avatar answered Oct 27 '22 11:10

SaeX