When I try to open Firebug Lite in Chrome on some sites, I get the 
following errors.  I've removed and re-installed the extension.  I can see 
these errors when I just open the Javascript console.

*(x)Uncaught TypeError: Cannot read property 'push' of undefined        *
*chrome-extension://bmagokdooijbeehmkpknfglimnifench/firebug-lite.js:30905 *

*(2) Uncaught TypeError: Cannot read property 'toggle' of undefined     *
*(program):1*

The specific function of code in firebug-lite.js for the first error is 
below.  It appears that messageQueue is somehow no longer an array.  The 
sites I've seen this on are AngularJS sites.

this.logRow = function(message, className)
{
    var panel = this.getPanel();
    
    if (panel && panel.panelNode)
        this.writeMessage(message, className);
    else
    {
        *this.messageQueue.push([message, className]);*
    }
    
    return this.LOG_COMMAND;
};

Below is a link to an Angular demo page that I'm having this issue with.

http://angular.github.io/angular-phonecat/step-12/app/#/phones

Please let me know if others have the same problem opening Firebug Lite in 
Chrome for this page.

thanks!


-- 
You received this message because you are subscribed to the Google Groups 
"Firebug" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/firebug.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/firebug/0b61ae05-a70d-448e-bf3e-25bf78779875%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to