Hey Guys, I''ve just encountered this error in Firefox will I pulled the latest scriptaculous rc into project. Sadly, I don''t have a linkable page for you to look over at the point. My question is what is this error exactly? My code before this never got it but now it does. My few searches suggest it''s the browsers way of keeping infinite loops from happening so it sets some arbitrary number of function calls you can make(?). Can someone suggest how Firefox calculates this and how I can get around it? Thanks! Cheers, Marty
Can you post what the error is? Thanks, Jon Whitcraft Web Application Developer Online Services - Indianapolis Motor Speedway (317) 492-8623 -----Original Message----- From: rails-spinoffs-bounces@lists.rubyonrails.org [mailto:rails-spinoffs-bounces@lists.rubyonrails.org] On Behalf Of Marty Haught Sent: Tuesday, September 27, 2005 3:26 PM To: rails-spinoffs@lists.rubyonrails.org Subject: [Rails-spinoffs] Too much recursion Hey Guys, I''ve just encountered this error in Firefox will I pulled the latest scriptaculous rc into project. Sadly, I don''t have a linkable page for you to look over at the point. My question is what is this error exactly? My code before this never got it but now it does. My few searches suggest it''s the browsers way of keeping infinite loops from happening so it sets some arbitrary number of function calls you can make(?). Can someone suggest how Firefox calculates this and how I can get around it? Thanks! Cheers, Marty _______________________________________________ Rails-spinoffs mailing list Rails-spinoffs@lists.rubyonrails.org http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs ******************** ******************** This E-mail (and attachments) may contain confidential/privileged information intended only for the named addressee(s). Confidential health information is protected by federal and state law, including HIPAA. If you are not an intended recipient, you may not read, copy, disseminate or take any action in reliance on the content of this E-mail. Please notify the sender by reply E-mail and immediately and permanently erase this E-mail from your system. Your assistance is appreciated. E-mail transmission may not be secure or error-free. Information may be delayed, intercepted, corrupted, lost or destroyed. The company does not accept any liability for errors/omissions in the content of this E-mail (or attachments) that may arise as a result of electronic transmission. The company is not responsible for any loss/damage arising from any virus transmitted by this E-mail (or attachments). ******************** ********************
Marty, this usually happens when one request gets a redirect to the same page (because of badly set routing, for example). The browser keeps asking for the resource and the server keeps redirecting it to the same resource. On and on until the browser pops up and alert (or, in the case of IE, crashes) Cheers, Victor On 9/27/05, Marty Haught <marty@razorstream.com> wrote:> Hey Guys, > > I''ve just encountered this error in Firefox will I pulled the latest > scriptaculous rc into project. Sadly, I don''t have a linkable page for > you to look over at the point. My question is what is this error > exactly? My code before this never got it but now it does. My few > searches suggest it''s the browsers way of keeping infinite loops from > happening so it sets some arbitrary number of function calls you can > make(?). Can someone suggest how Firefox calculates this and how I can > get around it? Thanks! > > Cheers, > Marty > _______________________________________________ > Rails-spinoffs mailing list > Rails-spinoffs@lists.rubyonrails.org > http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs >-- Victor Jalencas <Victor.Jalencas@gmail.com>
victor jalencas wrote:>Marty, > > this usually happens when one request gets a redirect to the same >page (because of badly set routing, for example). The browser keeps >asking for the resource and the server keeps redirecting it to the >same resource. On and on until the browser pops up and alert (or, in >the case of IE, crashes) >Thanks Guys, I found the problem about a half hour after sending the email. I switched two callbacks on themselves which had one control (a resizeable) call my slider control whenever it was updated, telling it to go to x value. Then my slider''s callback would tell the resizeable to go to x value. I felt very silly. Once I corrected the callback all was well. Cheers, Marty