diff --git a/src/entry/index.js b/src/entry/index.js index bda4bc4..89a243b 100644 --- a/src/entry/index.js +++ b/src/entry/index.js @@ -111,6 +111,7 @@ function indexSetAnalyticsPrefs () { function indexLoadStart () { indexHideSplash(); showLogo(); + showGear(); gn('gettings').className = 'gettings show'; gn('startcode').className = 'startcode show'; @@ -143,6 +144,14 @@ function showLogo () { gn('jrlogo').className = 'jrlogo show'; } +function hideGear () { + gn('gear').className = 'gear hide'; +} + +function showGear () { + gn('gear').className = 'gear show'; +} + function indexAskPlace () { gn('authors').className = 'credits show'; gn('authorsText').className = 'creditsText hide'; @@ -227,6 +236,7 @@ function optionSelected (elem) { function indexShowQuestion (key) { indexHideSplash(); hideLogo(); + hideGear(); var optionType = InitialOptions.optionTypeForKey(key); if (optionType === 'place_preference') { indexAskPlace();