removed scanner tip

This commit is contained in:
Jamal Jackson 2016-10-07 16:42:51 -04:00
parent 7f2dae6960
commit 93625092c5
2 changed files with 1 additions and 37 deletions

View File

@ -73,28 +73,7 @@ angular.module('copayApp.controllers').controller('scannerController', function(
}; };
$scope.init = function() { $scope.init = function() {
if (platformInfo.isCordova) scannerInit();
else checkTips();
};
function checkTips() {
//TODO addapt tips to the new QR plugin (mobile)
storageService.getScanTipsAccepted(function(err, accepted) {
if (err) $log.warn(err);
if (accepted) {
scannerInit(); scannerInit();
return;
}
$timeout(function() {
$ionicModal.fromTemplateUrl('views/modals/scan-tips.html', {
scope: $scope
}).then(function(modal) {
$scope.scanTipsModal = modal;
$scope.scanTipsModal.show();
});
}, 1000);
});
}; };
$scope.$on('TipsModalClosed', function(event) { $scope.$on('TipsModalClosed', function(event) {

View File

@ -1,15 +0,0 @@
<ion-modal-view ng-style="{opacity: '0.9'}" ng-controller="scanTipsController">
<ion-nav-bar class="bar-ligt">
<ion-nav-buttons side="secondary">
<button class="button" ng-click="close()">
X
</button>
</ion-nav-buttons>
</ion-nav-bar>
<ion-content class="has-header">
<div class="text-center">
<h2>Scan the code to pay with bitcoin</h2>
<h3>QR codes could also contain a bitcoin wallet invitation, or an URL</h3>
</div>
</ion-content>
</ion-modal-view>