get scripty 1.7.1_beta3. 1.7.0 is not compatible with Prototype 1.5.0.
Best,
Thomas
Am 03.06.2007 um 20:18 schrieb RighteousRaven:
>
> I have a repeatable bug, but I don''t really know what is causing
it.
> Here''s what FireBug has to say:
>
> too much recursion
> [Break on this error] return value.apply(null,
> [this].concat($A(arguments)));
> prototype.js (line 1317)
>
> The errors keep going on forever until i close the window and firefox
> uses 50% of my CPU.
> The code that is repeatedly causing this error:
>
> function sendTempError(eMessage) {
> var oldError = $(''tError'');
> if (oldError) oldError.remove();
>
> var errorElem =
Builder.node(''div'',{id:''tError''}, [
Builder.node(''p'',
> [ eMessage ]) ]);
> errorElem.addClassName(''tempError'');
> document.body.appendChild(errorElem);
> new Effect.Opacity(errorElem, {duration:0.1, from:0.0, to:0.5});
> setTimeout("new Effect.Opacity($(''"+errorElem.id
+"''), {duration:0.5,
> to:0.0});", eMessage.length * 40 + 1000);
> }
>
> This error occurs in prototype 1.5.1 but not in 1.5.0. I''m using
> scriptaculous v1.7.0.
>
>
> >
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Ruby on Rails: Spinoffs" group.
To post to this group, send email to
rubyonrails-spinoffs-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
To unsubscribe from this group, send email to
rubyonrails-spinoffs-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
For more options, visit this group at
http://groups.google.com/group/rubyonrails-spinoffs?hl=en
-~----------~----~----~----~------~----~------~--~---