Issue 26: detect Firebug (not Lite)
Status:  Fixed
Owner:
Closed:  Sep 2009
Project Member Reported by stevesou...@gmail.com, Sep 3, 2009
Firebug Lite doesn't work if Firebug (the add-on) is running. Can we detect
this and tell the user to right-click and use "Inspect Element" instead?
Sep 7, 2009
Project Member #1 sunny.dr...@gmail.com
Steve, we can just check for _firebug existence
if (typeof _firebug==='undefined') {
run(firebug.lite);
} else {
show.notice();
}
Sep 8, 2009
Project Member #2 stevesou...@gmail.com
That worked! Thanks.
Status: Fixed