Skip to content

Commit dc3a4fe

Browse files
dlavoiedlavoie
dlavoie
authored and
dlavoie
committed
Fixed regressions from 0.6.0
1 parent 755a7f0 commit dc3a4fe

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

src/main/java/com/cspinformatique/forms/controller/PollParticipantAnswersController.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ public String getPollParticipantAnswersPage() {
3838
@RequestMapping(method = RequestMethod.POST, produces = MediaType.APPLICATION_JSON_VALUE)
3939
public @ResponseBody PollParticipantAnswers save(
4040
@RequestBody PollParticipantAnswers pollParticipantAnswers) {
41-
throw new RuntimeException("Une erreur est survenu");
42-
// return this.pollParticipantAnswersService.save(pollParticipantAnswers);
41+
return this.pollParticipantAnswersService.save(pollParticipantAnswers);
4342
}
4443
}

src/main/webapp/resources/js/polls.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ app.controller("PollController", function($timeout, $scope, $http, $sce, fileUpl
9797
$http.post("/pollParticipantAnswers", {poll : $scope.poll, answers : answersArray}).success(function(pollParticipantAnswers){
9898
$scope.poll.submited = true;
9999
}).error(function(data){
100-
handleServerError(data);
100+
$scope.handleServerError(data);
101101
}).finally(function(){
102102
$scope.poll.loading = false;
103103
$(".progress").addClass("hidden");

0 commit comments

Comments
 (0)