show scan tips

This commit is contained in:
Javier 2016-09-12 16:41:04 -03:00
commit 091ae73e2d
6 changed files with 53 additions and 8 deletions

View file

@ -0,0 +1,11 @@
'use strict';
angular.module('copayApp.controllers').controller('scanTipsController', function($scope, $log, storageService) {
$scope.close = function() {
$log.debug('Scan tips accepted');
storageService.setScanTipsAccepted(true, function(err) {
$scope.$emit('TipsModalClosed', function() {});
$scope.scanTipsModal.hide();
});
}
});