Event sent to : resizewindow
An event is resizedispatched to an element windowwhen the browser window is resized.
But Backbone view events are tied to the view elusing delegate. The view elwill not receive the event resize, so posting 'resize articule': 'repositionBoards'in your view eventswill not be beneficial.
If you need to get an event resizein your view, you have to bind it to windowyourself:
initialize: (options) ->
$(window).on('resize', this.repositionBoards)
remove: ->
$(window).off('resize', this.repositionBoards)
@$el.remove()
@
repositionBoards: ->
board.align()
remove, resize. , view.remove() , - .