[Proto-Scripty] Re: Problem with Prototype 1.6.1 ( solved)

2009-11-10 Thread Irwan Djoehana
Thank you very much. I had the same problem and your fix did work. Cheers :-) On 12 oct, 22:16, Julius Šėporaitis jul...@seporaitis.net wrote: Hi, just wanted to post a quick note for those who maybe had problems like mine: - Prototype v.1.6.1 - Firefox 3.5 - JS Error:

[Proto-Scripty] Re: Problem with Prototype 1.6.1 ( solved)

2009-10-14 Thread Garfieldius
For the sake of completeness: you forgot the so it's if(typeof root == string) root = $(root); --~--~-~--~~~---~--~~ 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

[Proto-Scripty] Re: Problem with Prototype 1.6.1 ( solved)

2009-10-14 Thread svens0...@googlemail.com
Hi, i have the same issue with the error but your solution doesnt work for me. Error keeps the same. Any more ideas? On 12 Okt., 23:16, Julius Šėporaitis jul...@seporaitis.net wrote: Hi, just wanted to post a quick note for those who maybe had problems like mine: - Prototype v.1.6.1 -

[Proto-Scripty] Re: Problem with Prototype 1.6.1 ( solved)

2009-10-14 Thread Julius Seporaitis
Garfieldius, thanks :) svens0n82, I've later found that function 'descendant' also needs similar fix. Around line 3597 in prototype.js I've changed: h.concat(results, node.getElementsByTagName('*')); into if(typeof node == 'string') { node = $(node); } h.concat(results,