0.1.3 • Published 10 years ago

jstools-events v0.1.3

Weekly downloads
1
License
MIT
Repository
github
Last release
10 years ago

jEngine: Events wercker status

Bower version npm version Build Status

Installation

npm install jstools-events --save

or

bower install jstools-events --save

Usage

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

10 years ago

0.1.2

10 years ago

0.1.1

10 years ago

0.1.0

10 years ago

0.0.21

10 years ago

0.0.20

10 years ago

0.0.19

10 years ago

0.0.17

10 years ago

0.0.5

11 years ago

0.0.4

11 years ago

0.0.3

11 years ago

0.0.2

11 years ago

0.0.1

11 years ago