Closed Bug 527647 Opened 15 years ago Closed 15 years ago

Jetpack is not compatible with Firebug 1.4.5

Categories

(Mozilla Labs :: Jetpack Prototype, defect)

defect
Not set
normal

Tracking

(Not tracked)

RESOLVED DUPLICATE of bug 521078

People

(Reporter: Honza, Unassigned)

Details

(Whiteboard: [firebug-p3])

This bug was also reported here: http://code.google.com/p/fbug/issues/detail?id=2473 Jetpack uses APIs that have been changed in Firebug 1.4.3 (Firebug.URLSelector has been replaced by Firebug.Activation). The problem is in firebug-extension.js file where following code should be used. var JetpackTabWatcher = { shouldCreateContext: function(browser, uri) { if (uri == JETPACK_URL) { Firebug.Activation.watchBrowser(browser); // This is the new code. return true; } }, If backward compatibility with Firebug 1.4.2 should be kept, the following condition could be used. if (Firebug.Activation) Firebug.Activation.watchBrowser(browser); else Firebug.URLSelector.watchBrowser(browser); Honza
OS: Windows Vista → All
Hardware: x86 → All
Whiteboard: [firebug-p3]
dupe of bug 521078?
Yes, I'll link my comment to the other bug. Honza
Status: NEW → RESOLVED
Closed: 15 years ago
Resolution: --- → DUPLICATE
You need to log in before you can comment on or make changes to this bug.