diff --git a/src/main/webapp/resources/js/controllers/home.js b/src/main/webapp/resources/js/controllers/home.js index 75b0819..d16a20b 100644 --- a/src/main/webapp/resources/js/controllers/home.js +++ b/src/main/webapp/resources/js/controllers/home.js @@ -900,8 +900,10 @@ olyMod.controller('HomeCtrl', function ($scope, $rootScope, $filter, $location, $scope.$on('CALL_OPEN_ERROR',handleCallErrorsWhileTouring); $scope.$on('CALL_ERROR',handleCallErrorsWhileTouring); $scope.$on('CALL_OPENED', function () { - tourManager.stopTour(); - $scope.showTourSplash('call-success',2000); + if (tourManager.stepActive('step-make-the-call')) { + tourManager.stopTour(); + $scope.showTourSplash('call-success',2000); + } }); $scope.$on('MESSAGE_SENT',function () { if (tourManager.stepActive('step-send-the-message')) {