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
|
||||
|
|
Reference in a new issue