On Mar 9, 3:14 am, mechastorm <[email protected]> wrote:
> Just FYI for those Facebook Developers who debug Facebook via Firebug.
>
> Facebook has essentially broken the use of Firebug recently. None of
> the apps/games that use JS will run when Firebug is enabled
> (specifically the JS console). Disabling the firebug console allows it
> to work again.
>
> http://bugs.developers.facebook.com/show_bug.cgi?id=9131
>
> It is really annoying since now its impossible to do any debugging
> work. I have switched to Opera's DragonFly for now but the interface
> is not as straightforward as Firebugs and you don't get console.debug
> in Opera I think.

Well the script from http://static.ak.fbcdn.net/rsrc.php
tries to re-assign the console object:
[Break on this error] function muffinize(d){var c='a';var b=...
console=console||{log:bagofholding};

If you implement this as:
  if (!console) console = {log:bagofholding};
then you won't get the error message.

jjb

>
> Anyways it's just a heads up.

-- 
You received this message because you are subscribed to the Google Groups 
"Firebug" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/firebug?hl=en.

Reply via email to