backbone.fwd
backbone.fwd copied to clipboard
forward events from one backbone object, through another
Backbone.Events.listenTo doesn't provide a 4th argument. The context of the callback will always be the object that is listening. The 4th argument is effectively useless (and confusing) here. See: http://backbonejs.org/#Events-listenTo
I wrote a similar library for your very own Wreqr [over here](https://github.com/Puppets/radio-forward.js), heh heh. One feature I added was event filtering. The code there for filtering is bad (really the...
The package.json is missing a `main` field and `src/backbone.fwd.js` should export the `fwd` function to `module.exports` when it's defined.