Wallet/src/js/controllers/feedback/thanks.js

12 lines
504 B
JavaScript
Raw Normal View History

2016-11-01 14:21:35 -03:00
'use strict';
2016-11-02 10:52:04 -03:00
angular.module('copayApp.controllers').controller('thanksController', function($scope, $stateParams, configService, storageService) {
2016-11-01 14:21:35 -03:00
$scope.score = parseInt($stateParams.score);
$scope.skip = $stateParams.skip && $scope.score == 5;
2016-11-02 10:52:04 -03:00
storageService.setRateCardFlag('true', function() {});
2016-11-01 15:35:52 -03:00
$scope.$on("$ionicView.beforeEnter", function(event, data) {
2016-11-02 10:52:04 -03:00
var config = configService.getSync();
window.plugins.socialsharing.share(config.download.url, null, null, null);
2016-11-01 15:35:52 -03:00
});
2016-11-01 14:21:35 -03:00
});