Skip to content

Instantly share code, notes, and snippets.

@roman0x58
Last active December 10, 2015 10:45
Show Gist options
  • Save roman0x58/a79af897f9cb73955d27 to your computer and use it in GitHub Desktop.
Save roman0x58/a79af897f9cb73955d27 to your computer and use it in GitHub Desktop.
Backbone event relay
((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