Fixing some event tearing down.

This commit is contained in:
Scott Erickson 2014-02-11 11:31:02 -08:00
parent 21c93e85ed
commit 8ff38a724d
2 changed files with 5 additions and 0 deletions

View file

@ -239,4 +239,5 @@ module.exports = class PlaybackView extends View
destroy: ->
super()
me.off('change:music', @updateMusicButton, @)
$(window).off('resize', @onWindowResize)

View file

@ -54,3 +54,7 @@ module.exports = class SpellPaletteEntryView extends View
@options.thang = @thang = e.selectedThang # Update our thang to the current version
@options.doc = @doc = Docs.getDocsFor(@thang, [@doc.prop])[0]
@$el.find("code.current-value").text(@doc.formatValue()) # Don't call any functions. (?? What does this mean?)
destroy: ->
@$el.off()
super()