ractive.on()
edit this pageSubscribe to events.
ractive.on( eventName, handler )
Returns an
Object
with acancel
method, which removes the handler.eventName
String
The name of the event to subscribe to
handler
Function
The function that will be called, with
ractive
asthis
. The arguments depend on the event. Returningfalse
from the handler will stop propagation and prevent default of DOM events and cancel event bubbling.ractive.on( obj )
Returns an
Object
with acancel
method, which removes all handlers in the passed-inobj
.obj
Object
An object with keys named for each event to subscribe to. The value at each key is the handler function for that event.
Examples
// single handler to function
ractive.on( 'activate', function () {...});
// wildcard pattern matching
ractive.on( 'foo.*', function () {...} );
// multiple handlers to one function
ractive.on( 'activate select', function () {...} );
// map of handler/function pairs
ractive.on({
activate: function () {...},
select: function () {...}
});
// knock yourself out:
ractive.on({
activate: function () {...},
'bip bop boop': function () {...},
'select foo.* bar': function () {...}
});