feedback feature

This commit is contained in:
Gabriel Bazán 2016-11-01 14:21:35 -03:00
commit b64e80478e
14 changed files with 344 additions and 3 deletions

View file

@ -0,0 +1,22 @@
'use strict';
angular.module('copayApp.controllers').controller('rateAppStoreController', function($scope, $state, $stateParams) {
$scope.score = parseInt($stateParams.score);
$scope.skip = function() {
$state.go('feedback.thanks', {
score: $scope.score,
skip: true
});
};
$scope.sendFeedback = function() {
$state.go('feedback.sendFeedback', {
score: $scope.score
});
};
$scope.goAppStore = function() {
};
});