Skip to content

Commit

Permalink
Fixed js error in experiment.js
Browse files Browse the repository at this point in the history
modified:   app/assets/javascripts/angular/controllers/experiments.js
  • Loading branch information
Mark Cottman-Fields committed Apr 2, 2013
1 parent 0638495 commit b77fb92
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/assets/javascripts/angular/controllers/experiments.js
Original file line number Diff line number Diff line change
Expand Up @@ -831,7 +831,7 @@
return false;
}

var responsesCount = Object.keys($scope.stepResults.responses).length;
var responsesCount = $scope.stepResults.responses.length;
var totalToVerify = $scope.currentVerify.length;
return responsesCount == totalToVerify;
};
Expand Down

0 comments on commit b77fb92

Please sign in to comment.