Last active
December 10, 2015 10:45
-
-
Save roman0x58/a79af897f9cb73955d27 to your computer and use it in GitHub Desktop.
Backbone event relay
This file contains 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
((root, props) -> | |
relayEvent = -> | |
a = _.chain(arguments).toArray() | |
a.unshift(@) if a.size().value() is 2 | |
((from, to, eventName) -> | |
from.on(eventName, -> | |
a = _.chain(arguments) | |
.toArray() | |
.unshift(eventName) | |
to.trigger.apply(to, a.value()) | |
to | |
)).apply(@, a.value()) | |
root[name]::relayEvent = relayEvent for name in props when not _.isUndefined root[name] | |
)(Backbone, ['View', 'Model', 'Collection', 'Router']) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment