0.1.3 • Published 11 years ago
jengine-events v0.1.3
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');
}]);0.1.3
11 years ago