delete popup rate card from settings

This commit is contained in:
Gabriel Bazán 2016-11-15 17:38:48 -03:00
commit 8e7e950eb2
10 changed files with 92 additions and 69 deletions

View file

@ -32,15 +32,4 @@ angular.module('copayApp.controllers').controller('tabSettingsController', funct
updateConfig();
});
$scope.openRateModal = function() {
$scope.isModal = true;
$ionicModal.fromTemplateUrl('views/feedback/rateCard.html', {
scope: $scope,
backdropClickToClose: false,
hardwareBackButtonClose: false
}).then(function(modal) {
$scope.rateModal = modal;
$scope.rateModal.show();
});
}
});