The Backbone.js plugin's `BackboneEventsOn` fn expects `.on()` to have been called with arguments `name`, `callback`, and `context`: https://github.com/getsentry/raven-js/blob/master/plugins/backbone.js#L14-21 However, Backbone.js also supports calling `.on()` using the event map syntax (http://backbonejs.org/#Events-on), e.g.: ``` js book.on({ "change:title": titleView.update, "change:author": authorPane.update, "destroy": bookView.remove }); ``` This usage currently throws an error: ``` js Uncaught TypeError: Cannot read property '_callback' of undefined ``` Am I missing something? I'll try to submit a PR shortly.