2.2.1 • Published 2 years ago

minivents v2.2.1

Weekly downloads
1,522
License
MIT
Repository
github
Last release
2 years ago

minivents Build Status

http://allouis.github.io/minivents/

API

on : Listen to event. Params { type:String, callback:Function | context:Object }. Returns target.

off : Stop listening to event. Params { type:String | callback:Function }. Returns target.

emit: Emit event. Params { type:String | data:Object }. Returns target.

Constructor Example

var sandbox = new Events();
    
sandbox.on("event", function(){
    // do stuff
});

sandbox.emit("event"); //does stuff

sandbox.off("event");

sandbox.emit("event"); //does not do stuff

Mixin Example

var sandbox = {
    otherStuff: true
};

Events(sandbox);

sandbox.on("event", function(){
    // do stuff
});

sandbox.emit("event"); //does stuff

sandbox.off("event");

sandbox.emit("event"); //does not do stuff