mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2025-04-26 22:13:32 -04:00
Fixed problem opening GameMenuModal when there are no help videos.
This commit is contained in:
parent
8221531c40
commit
728f726748
1 changed files with 1 additions and 1 deletions
|
@ -14,7 +14,7 @@ module.exports = class LevelGuideView extends CocoView
|
|||
|
||||
constructor: (options) ->
|
||||
@levelID = options.level.get('slug')
|
||||
@helpVideos = options.level.get 'helpVideos'
|
||||
@helpVideos = options.level.get('helpVideos') ? []
|
||||
@trackedHelpVideoStart = @trackedHelpVideoFinish = false
|
||||
|
||||
# A/B Testing video tutorial styles
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue