Merge branch 'master' into production

This commit is contained in:
Nick Winter 2014-11-14 18:25:16 -08:00
commit 6f7faced23
2 changed files with 5 additions and 2 deletions

View file

@ -365,3 +365,6 @@ html.no-borderimage
&.disabled, &:disabled
background-image: url(/images/common/button-background-disabled.png)
body > iframe[src^="https://apis.google.com"]
display: none

View file

@ -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