This commit is contained in:
Joseph Schorr 2014-11-10 11:37:52 -05:00
parent 9408138230
commit 870d5ed0c5

View file

@ -4841,11 +4841,14 @@ quayApp.directive('stepView', function ($compile) {
this.next = function() { this.next = function() {
if (this.currentStepIndex >= 0) { if (this.currentStepIndex >= 0) {
if (!this.getCurrentStep().scope.completeCondition) { var currentStep = this.getCurrentStep();
if (!currentStep || !currentStep.scope) { return; }
if (!currentStep.scope.completeCondition) {
return; return;
} }
this.getCurrentStep().element.hide(); currentStep.element.hide();
if (this.unwatch) { if (this.unwatch) {
this.unwatch(); this.unwatch();