Fix auto-logout after scan a QR

This commit is contained in:
Gustavo Maximiliano Cortez 2014-12-12 15:07:48 -03:00
parent 1e071e8215
commit c187c0fb03
3 changed files with 17 additions and 1 deletions

View File

@ -99,14 +99,21 @@ angular.module('copayApp.controllers').controller('JoinController',
};
$scope.scannerIntent = function() {
window.usingCamera = true;
cordova.plugins.barcodeScanner.scan(
function onSuccess(result) {
$timeout(function(){
window.usingCamera = false;
}, 100);
if (result.cancelled) return;
$scope.connectionId = result.text;
$rootScope.$digest();
},
function onError(error) {
$timeout(function(){
window.usingCamera = false;
}, 100);
alert('Scanning error');
});
}

View File

@ -285,8 +285,12 @@ angular.module('copayApp.controllers').controller('SendController',
};
$scope.scannerIntent = function() {
window.usingCamera = true;
cordova.plugins.barcodeScanner.scan(
function onSuccess(result) {
$timeout(function(){
window.usingCamera = false;
}, 100);
if (result.cancelled) return;
$timeout(function() {
@ -298,6 +302,9 @@ angular.module('copayApp.controllers').controller('SendController',
}, 1000);
},
function onError(error) {
$timeout(function(){
window.usingCamera = false;
}, 100);
alert('Scanning error');
});
}

View File

@ -10,7 +10,9 @@ angular.element(document).ready(function() {
document.addEventListener('deviceready', function() {
document.addEventListener('pause', function() {
window.location = '#!';
if (!window.usingCamera) {
window.location = '#!';
}
});
setTimeout(function() {