mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2025-04-04 17:19:47 -04:00
Fixing some event tearing down.
This commit is contained in:
parent
21c93e85ed
commit
8ff38a724d
2 changed files with 5 additions and 0 deletions
app/views/play/level
|
@ -239,4 +239,5 @@ module.exports = class PlaybackView extends View
|
|||
|
||||
destroy: ->
|
||||
super()
|
||||
me.off('change:music', @updateMusicButton, @)
|
||||
$(window).off('resize', @onWindowResize)
|
||||
|
|
|
@ -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()
|
Loading…
Add table
Reference in a new issue