[Prototype-core] Re: Opera 8.54

2007-05-03 Thread alshur
Damn, Prototype 1.5.1 final doesn't have this issue fixed... On Apr 26, 6:49 pm, Andrew Sumin [EMAIL PROTECTED] wrote: I add prototype 1.5.1_rc3 to the page. All submits in Opera do nothing. If I change SpecificElementExtensions: (document.createElement('div').__proto__ !==

[Prototype-core] Re: Opera 8.54

2007-05-03 Thread Mislav Marohnić
On 5/3/07, alshur [EMAIL PROTECTED] wrote: Damn, Prototype 1.5.1 final doesn't have this issue fixed... Sorry for that. It's a serious issue that we have overlooked because of lack of information. But, the fix Andrew provided seems smart and sufficient - we indeed should check if __proto__

[Prototype-core] Unexpected behaviour when using $A(document.getElementsByTagName(script))

2007-05-03 Thread Richard Quadling
Hi. You can jump straight the *** QUESTION *** if you want. *** BACKGROUND *** I have my own library of extensions, arranged in a manner similar to Scriptaculous. By using the same mechanism to load my library files as Scriptaculous, I can edit single files and test. But it is not working,

[Prototype-core] Re: Unexpected behaviour when using $A(document.getElementsByTagName(script))

2007-05-03 Thread jdalton
Hello Richard, First, this is not a $A() issue. When you called ''With Reporter' you wont get scritpaculous because your code is executing before scriptaculous is even rendered via the dom. (top down) The dom should be there onLoad though. If not try: Event.observe(window, 'load', function(){

[Prototype-core] Integration of something like ben nolan's behaviour?

2007-05-03 Thread snarkyFish
I've been using prototype and behaviour side by side for a while now. I am rather new to prototype, but I've yet to find anything as simple and clean as behaviour ( http://bennolan.com/behaviour/ ) for associating an event to a css selector. All the parts are there within prototype, so running

[Prototype-core] Re: Integration of something like ben nolan's behaviour?

2007-05-03 Thread Michael Peters
Mislav Marohnić wrote: Yeah, this is it. You only need Event.onReady() for this. You can find it in the event branch or you can copy it over from LowPro. Once Event.onReady() gets into trunk, these 3 lines will probably be all you need. And it's even better than the current behaviour.js

[Prototype-core] Re: Integration of something like ben nolan's behaviour?

2007-05-03 Thread Ben Nolan
I should update bennolan.com/behaviour/. :) Ben On 5/3/07, Michael Peters [EMAIL PROTECTED] wrote: Mislav Marohnić wrote: Yeah, this is it. You only need Event.onReady() for this. You can find it in the event branch or you can copy it over from LowPro. Once Event.onReady() gets into