Skip to content
This repository has been archived by the owner on Oct 8, 2019. It is now read-only.

Commit

Permalink
fix(Feedback): use new endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
Sjors committed Dec 15, 2015
1 parent 6a73860 commit 05a17b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion assets/js/controllers/feedback.controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ function FeedbackCtrl($scope, $log, $state, $http) {
'fullname': $scope.fullname,
'email': $scope.email
};
$http.post('https://blockchain.info/v3-feedback', form).success(data => {
$http.post('/feedback', form).success(data => {
$scope.formStage = (data.success) ? 2 : 3;
}).error(() => {
$scope.formStage = 3;
Expand Down

0 comments on commit 05a17b8

Please sign in to comment.