cool link.  It got me to working with the js code and I hacked a way
to make it ignore multiple websites.  I also just edited the
firebug.js jar file from the extension in my firefox directory.


var FireBug =
{
       //add this variable under the FireBug object
        ignoreSites: {
                "about":"about:blank",
                "gmail": "mail.google.com",
                "mymail": "email.secureserver.net",
                "bloglines": "www.bloglines.com"
        },


Change the function to this:

FireBug.isWindowInspectable = function(win)
{
        //return win.location.href != "about:blank";
        for (var i in this.ignoreSites)
        {
                if (win.location.href.indexOf(this.ignoreSites[i]) != -1)
                {
                        return false;
                }
        }
        return true;
}




On 10/12/06, Gert B. Frobe <[EMAIL PROTECTED]> wrote:
> aye. I totally dig it
>
> On 10/12/06, G Money <[EMAIL PROTECTED]> wrote:
> >
> > Do you use the firebug extension? It pretty cool?
> >
> > On 10/12/06, Gert B. Frobe <[EMAIL PROTECTED]> wrote:
> > >
> > > if it's been posted before *shrug*
> > > http://www.paulchaplin.com/blog/firebug-and-gmail-friends-at-last/
> > >
> > >
> > >
> >
> >
>
> 

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Community/message.cfm/messageid:217388
Subscription: http://www.houseoffusion.com/groups/CF-Community/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.5

Reply via email to