Re: [Trinidad] console is undefined?

2007-09-14 Thread Matthias Wessendorf
Subject: Re: [Trinidad] console is undefined? This is indeed an attempt to call the firebug console (if it exists), and Andrew's totally right that the syntax here is wrong. FWIW, this should only be called if an error

RE: [Trinidad] console is undefined?

2007-09-13 Thread Bertrand, Shawn R
From: Adam Winer [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 12, 2007 2:08 PM To: MyFaces Discussion Subject: Re: [Trinidad] console is undefined? This is indeed an attempt to call the firebug console (if it exists), and Andrew's totally right that the syntax here is wrong

Re: [Trinidad] console is undefined?

2007-09-13 Thread Andrew Robinson
message in IE? Shawn From: Adam Winer [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 12, 2007 2:08 PM To: MyFaces Discussion Subject: Re: [Trinidad] console is undefined? This is indeed an attempt to call the firebug console

Re: [Trinidad] console is undefined?

2007-09-13 Thread Matt Cooper
-- *From:* Adam Winer [mailto:[EMAIL PROTECTED] *Sent:* Wednesday, September 12, 2007 2:08 PM *To:* MyFaces Discussion *Subject:* Re: [Trinidad] console is undefined? This is indeed an attempt to call the firebug console (if it exists), and Andrew's totally right that the syntax here is wrong

Re: [Trinidad] console is undefined?

2007-09-13 Thread Adam Winer
From: Adam Winer [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 12, 2007 2:08 PM To: MyFaces Discussion Subject: Re: [Trinidad] console is undefined? This is indeed an attempt to call the firebug console (if it exists), and Andrew's totally right

Re: [Trinidad] console is undefined?

2007-09-13 Thread Matt Cooper
[mailto:[EMAIL PROTECTED] *Sent:* Wednesday, September 12, 2007 2:08 PM *To:* MyFaces Discussion *Subject:* Re: [Trinidad] console is undefined? This is indeed an attempt to call the firebug console (if it exists), and Andrew's totally right that the syntax here is wrong

Re: [Trinidad] console is undefined?

2007-09-13 Thread Andrew Robinson
From: Adam Winer [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 12, 2007 2:08 PM To: MyFaces Discussion Subject: Re: [Trinidad] console is undefined? This is indeed an attempt to call the firebug console (if it exists

RE: [Trinidad] console is undefined?

2007-09-13 Thread Bertrand, Shawn R
: Adam Winer [mailto:[EMAIL PROTECTED] Sent: Thursday, September 13, 2007 2:02 PM To: MyFaces Discussion Subject: Re: [Trinidad] console is undefined? I'd love to get some much better logging in Trinidad. http://ajaxpatterns.org/Javascript_Logging_Frameworks lists some more. Both the ones you

Re: [Trinidad] console is undefined?

2007-09-13 Thread Adam Winer
[mailto:[EMAIL PROTECTED] Sent: Wednesday, September 12, 2007 2:08 PM To: MyFaces Discussion Subject: Re: [Trinidad] console is undefined? This is indeed an attempt to call the firebug console (if it exists), and Andrew's totally right

[Trinidad] console is undefined?

2007-09-12 Thread Bertrand, Shawn R
I'm getting error generated from the first line of the following function in Common1_0_2.js: TrRequestQueue._logError=function(a118) { if(consoleconsole.error) console.error(arguments); } This is running in IE 6. Is this console object related to the Acrobat console window?

Re: [Trinidad] console is undefined?

2007-09-12 Thread Andrew Robinson
Yes, I get this all of the time to. I believe console is the firebug globally installed window variable (plug-in for firefox) I think the following code may be more IE friendly: if (window.console window.console.error) { ... } On 9/12/07, Bertrand, Shawn R [EMAIL PROTECTED] wrote: I'm

Re: [Trinidad] console is undefined?

2007-09-12 Thread Adam Winer
This is indeed an attempt to call the firebug console (if it exists), and Andrew's totally right that the syntax here is wrong. FWIW, this should only be called if an error has occurred, not in ordinary execution, so there's a more essential problem elsewhere. -- Adam On 9/12/07, Andrew