mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-28 01:55:38 -05:00
Fixed disabling of playback accidentally when disabling anything.
This commit is contained in:
parent
8c953fffed
commit
55196bc589
1 changed files with 2 additions and 2 deletions
|
@ -133,7 +133,7 @@ module.exports = class LevelPlaybackView extends CocoView
|
|||
@lastLoadedFrameCount = loadedFrameCount
|
||||
|
||||
onDisableControls: (e) ->
|
||||
if not e.controls or 'playback' in e.controls
|
||||
if not e.controls or ('playback' in e.controls)
|
||||
@disabled = true
|
||||
$('button', @$el).addClass('disabled')
|
||||
try
|
||||
|
@ -146,7 +146,7 @@ module.exports = class LevelPlaybackView extends CocoView
|
|||
|
||||
onEnableControls: (e) ->
|
||||
return if @realTime
|
||||
if not e.controls or 'playback' in e.controls
|
||||
if not e.controls or ('playback' in e.controls)
|
||||
@disabled = false
|
||||
$('button', @$el).removeClass('disabled')
|
||||
try
|
||||
|
|
Loading…
Reference in a new issue