Find the secrets to infinite income, and automate it!
23 Feb
For the most part the functionality of Prototype XUL works the same as normal prototype. The prototype documentation can be found here. The underlying changes are in the methods that extend Prototype.function. The functions that have been re-written are: argumentNames, bind, bindAsEventListener, curry, delay, defer, wrap and methodize. The core difference in use, is that these functions can not be extended from objects anymore and must be explicitly called.
argumentNames(someFunction) //-> Array
bind(thisObj, someFunction) //-> Function
bindAsEventListener(thisObj, someFunction) //-> Function
curry(someFunction, [args...]) //-> Function
curry(someFunction, [args...]) //-> Number
delay(someFunction, seconds, [args...]) //-> Number
delay(someFunction, [args...]) //-> Function
delay(wrapperFunction, someFunction, [args...]) //-> Function
Leave a reply