1.1.1 • Published 7 years ago

backbone.pubsub v1.1.1

Weekly downloads
2
License
MIT
Repository
github
Last release
7 years ago

Pubsub

PubSub for the browser

Install

	bower install backbone.pubsub --save
	or 
	npm install backbone.pubsub --save

Usage

	var PubSub = require("backbone.pubsub");

	var pubSub = new PubSub();

	pubSub.on("custom:trigger", function(data){
		console.log("Custom trigger fire!!", data);
	});


	setTimeout(function(){
		pubSub.trigger("custom:trigger", {custom: data});
	}, 5000);

License

MIT