A class which you can use with Mixen to cleanup events when you destroy Backbone subviews.
class MyView extends Mixen(EventJanitor, Backbone.View)
render: ->
subview = new OtherAwesomeView()
@rememberView subview
When undelegateEvents
gets called on the view, it will call stopListening
on all the
registered subviews.