jengine-events
v0.1.3
Published
simple javascript events handler
Readme
jEngine: Events 
Installation
npm install jengine-events --saveor
bower install jengine-events --saveUsage
var obj = new Events();
obj.on('foo', function () {
flag = true;
});
obj.trigger('foo');AngularJS Module
angular.module('myApp', ['jstools.events'])
.controller('AppCtrl', ['$scope', 'Events', function ($scope, Events) {
var obj = new Events();
obj.$$on('foo', function () {
flag = true;
});
obj.$$trigger('foo');
}]);
