show receive tips

This commit is contained in:
Javier 2016-09-12 15:04:12 -03:00
commit 3c353fdbcb
5 changed files with 63 additions and 1 deletions

View file

@ -0,0 +1,11 @@
'use strict';
angular.module('copayApp.controllers').controller('receiveTipsController', function($scope, $log, storageService) {
$scope.close = function() {
$log.debug('Receive tips accepted');
storageService.setReceiveTipsAccepted(true, function(err) {
$scope.receiveTipsModal.hide();
$scope.receiveTipsModal.remove();
});
}
});