1.0.0 • Published 7 years ago

deventman v1.0.0

Weekly downloads
1
License
MIT License
Repository
-
Last release
7 years ago

EventManager

Provides observable functionality and distributed event handling using subscribe/notify features.

Code Example:

var eManager = new EventManager();
eManager.subscribe("EVENT_NAME", function(eventObject){
	console.log(eventObject.message);
});
/* ... */
eManager.notify("EVENT_NAME", {"message": "Hi there!"});

Browser Capability

Should work well almost everywhere, e.g. IE7 >=

Dependencies

No exernal dependencies / third-party libs at all!

Feedback

For any questions/propositions/e.t.c you can contact me at kurzgame@gmail.com