From fd8f65cadce26cc30ca5745e62efb27487b63422 Mon Sep 17 00:00:00 2001 From: Matt Lott Date: Tue, 31 May 2016 10:37:30 -0700 Subject: [PATCH] Help button should open "Overview" (Guide) by default --- app/views/play/menu/GuideView.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/play/menu/GuideView.coffee b/app/views/play/menu/GuideView.coffee index 1d735349f..ca7020a02 100644 --- a/app/views/play/menu/GuideView.coffee +++ b/app/views/play/menu/GuideView.coffee @@ -68,7 +68,7 @@ module.exports = class LevelGuideView extends CocoView if @helpVideos.length startingTab = 0 else - startingTab = _.findIndex @docs, slug: 'intro' + startingTab = _.findIndex @docs, slug: 'overview' startingTab = 0 if startingTab is -1 # incredible hackiness. Getting bootstrap tabs to work shouldn't be this complex @$el.find(".nav-tabs li:nth(#{startingTab})").addClass('active')