diff --git a/website/public/js/services/guideServices.js b/website/public/js/services/guideServices.js
index 3ae4793dab..e54f12363b 100644
--- a/website/public/js/services/guideServices.js
+++ b/website/public/js/services/guideServices.js
@@ -189,9 +189,7 @@ function($rootScope, User, $timeout, $state, Analytics) {
$(step.element).popover('destroy'); // destroy existing hover popovers so we can add our own
step.onShow = function(){
Analytics.track({'hitType':'event','eventCategory':'behavior','eventAction':'tutorial','eventLabel':k+'-web','eventValue':i+1,'complete':false});
- // step.path doesn't work in Angular do to async ui-router. Our custom solution:
if (step.state && !$state.is(step.state)) {
- // $state.go() returns a promise, necessary for async tour steps; however, that's not working here - have to use timeout instead :/
$state.go(step.state);
return $timeout(function(){});
}
@@ -228,7 +226,6 @@ function($rootScope, User, $timeout, $state, Analytics) {
'