Did some digging into the tinymce for radiant extension I was using
and found the problem. In tiny_mce_settings.js there was a call to
getElementsByClassName('asset','assets') that was triggering the
Enumerable error. I changed the function to $$('asset','assets')Thanks! On Jul 28, 1:01 pm, "Alex McAuley" <[email protected]> wrote: > Most scripts on a page are evaluated by the interpereter first. > > COmment out all of your functions and see if its still happening > > Alex Mcauleyhttp://www.thevacancymarket.com > > ----- Original Message ----- > From: "stegel" <[email protected]> > To: "Prototype & script.aculo.us" <[email protected]> > Sent: Tuesday, July 28, 2009 5:48 PM > Subject: [Proto-Scripty] Re: Error in IE8 > > It is happening when I read in prototype.js, as it is the first js I > reference. Nothing is calling it yet. > > On Jul 28, 4:19 am, "Alex McAuley" <[email protected]> > wrote: > > Check the script that is calling it. > > Alex Mcauleyhttp://www.thevacancymarket.com > > > ----- Original Message ----- > > From: "stegel" <[email protected]> > > To: "Prototype & script.aculo.us" > > <[email protected]> > > Sent: Tuesday, July 28, 2009 2:59 AM > > Subject: [Proto-Scripty] Error in IE8 > > > > I am running prototype.js RC3 in IE8 within a Radiant CMS. It seems > > > that I am getting the following error on line 598 > > > > 'null' is null or not an object prototype.js, line 596 character 5 > > > > this is in the Enumerable Function: > > > > var Enumerable = { > > > each: function(iterator, context) { > > > var index = 0; > > > iterator = iterator.bind(context); > > > try { > > > this._each(function(value) { > > > iterator(value, index++); > > > }); > > > } catch (e) { > > > if (e != $break) throw e; > > > } > > > return this; > > > }, > > > > Anyone seen this error? --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Prototype & script.aculo.us" 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/prototype-scriptaculous?hl=en -~----------~----~----~----~------~----~------~--~---
