Created
October 21, 2011 15:16
-
-
Save thinkt4nk/1304094 to your computer and use it in GitHub Desktop.
Event Emitter With jQuery 1.7's $.Callbacks()
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* EventEmitter with jQuery 1.7's $.Callbacks(). | |
*/ | |
function EventEmitter() { | |
this.topics = {}; | |
} | |
/** | |
* Listen on the given `topic` event with `fn`. | |
* | |
* @param {String} topic | |
* @param {Function} fn | |
* @param {Mixed} ... options for $.Callbacks handling | |
*/ | |
EventEmitter.prototype.on = function(topic, fn){ | |
(this.topics[topic] = this.topics[topic] || $.Callbacks(Array.prototype.slice.call(arguments,2))) | |
.add(fn); | |
return this; | |
}; | |
/** | |
* Emit `topic` event with the given args. | |
* | |
* @param {String} topic | |
* @param {Mixed} ... | |
*/ | |
EventEmitter.prototype.emit = function(topic){ | |
var args = Array.prototype.slice.call(arguments, 1) | |
, callbacks = this.topics[topic]; | |
callbacks.fire(args); | |
return this; | |
}; | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment