event-actions
Advanced tools
Comparing version 0.1.0 to 0.1.1
@@ -111,3 +111,3 @@ "use strict"; | ||
EventActions.prototype.emitAction = function(action) { | ||
this.actions.emit.apply(null, arguments); | ||
this.actions.emit.apply(this.actions, arguments); | ||
return this; | ||
@@ -147,4 +147,4 @@ }; | ||
EventActions.prototype.emitEvent = function(event) { | ||
this.events.emit.apply(null, arguments); | ||
this.events.emit.apply(this.events, arguments); | ||
return this; | ||
}; |
{ | ||
"name": "event-actions", | ||
"description": "Application level event and action emitter", | ||
"version": "0.1.0", | ||
"main": "index.js", | ||
"author": { | ||
"name": "Harri Kovalainen", | ||
"email": "hakovala@gmail.com" | ||
}, | ||
"license": "MIT" | ||
} | ||
"name": "event-actions", | ||
"description": "Application level event and action emitter", | ||
"version": "0.1.1", | ||
"main": "index.js", | ||
"author": { | ||
"name": "Harri Kovalainen", | ||
"email": "hakovala@gmail.com" | ||
}, | ||
"license": "MIT" | ||
} |
6607