Skip to content

Latest commit

 

History

History
13 lines (10 loc) · 250 Bytes

event-handlers-outside-views.md

File metadata and controls

13 lines (10 loc) · 250 Bytes

Event handlers outside views

Every time you make an event handler outside a view class, consider making a new view class.

App.PhotoView = Backbone.View.extend({
  ...
});

// AVOID this!
$("a.photo").click(function() { ... });