From cfc8ff96e6fb4724dbc666e1644463f07fde1a34 Mon Sep 17 00:00:00 2001 From: Tyler Renelle Date: Thu, 16 Apr 2015 20:17:13 -0600 Subject: [PATCH] feat(tour): tmp set variant=2 to (counter + finish button) until we can get google experiment working --- website/public/js/services/guideServices.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/website/public/js/services/guideServices.js b/website/public/js/services/guideServices.js index 2deed9da4e..35f3676646 100644 --- a/website/public/js/services/guideServices.js +++ b/website/public/js/services/guideServices.js @@ -185,6 +185,8 @@ function($rootScope, User, $timeout, $state) { var showFinish = step.final || k == 'classes'; var showCounter = k=='intro' && !step.final; + $rootScope.variant=2; // temporarily set finish & counter on until we can get experiment working + // Experiment wud1Ba5qT1m9qR3PP0-Mmg , remove this when experiment complete // 0=No Finish; Yes Counter 1=No Finish; No Counter 2=Yes Finish; Yes Counter 3=Yes Finish; No Counter showFinish = showFinish || $rootScope.variant==2 || $rootScope.variant==3;