Solved
How can I add popup after the last step of sequence is finished?
I want a popup displaying some text and a button after the last step of sequence is finished.
Thank You in advance.
I want a popup displaying some text and a button after the last step of sequence is finished.
Thank You in advance.
Try adding this function to play button.
$scope.finishedNote = function(){
if ($scope.view.wdg['model'].currentStep == $scope.view.wdg['model'].steps){
$scope.$on('stepstarted', function(){
$scope.$on('stepcompleted', function(){
$scope.view.wdg['popup'].visible = true;
$scope.view.wdg['button'].visible = true;
})
})
}
}
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.