show lock screen at start

This commit is contained in:
JDonadio 2017-03-02 16:49:07 -03:00
parent e5ecc111f3
commit 6419342c4b
5 changed files with 13 additions and 15 deletions

View File

@ -54,7 +54,7 @@ angular.module('copayApp.controllers').controller('advancedSettingsController',
$scope.usePincodeChange = function() {
pincodeService.lockChange({
from: 'settings',
fromSettings: true,
locking: $scope.usePincode.enabled
});
};

View File

@ -15,17 +15,6 @@ angular.module('copayApp.controllers').controller('tabHomeController',
$scope.isNW = platformInfo.isNW;
$scope.showRateCard = {};
function openPincodeModal() {
$ionicModal.fromTemplateUrl('views/modals/pincode.html', {
scope: $scope,
backdropClickToClose: false,
hardwareBackButtonClose: false
}).then(function(modal) {
$scope.pincodeModal = modal;
$scope.pincodeModal.show();
});
};
// openPincodeModal();
$scope.$on("$ionicView.afterEnter", function() {
startupService.ready();
});

View File

@ -1091,11 +1091,20 @@ angular.module('copayApp').config(function(historicLogProvider, $provide, $logPr
}
});
})
.run(function($rootScope, $state, $location, $log, $timeout, $ionicHistory, $ionicPlatform, $window, appConfigService, lodash, platformInfo, profileService, uxLanguage, gettextCatalog, openURLService, storageService, scannerService, /* plugins START HERE => */ coinbaseService, glideraService, amazonService, bitpayCardService) {
.run(function($rootScope, $state, $location, $log, $timeout, $ionicHistory, $ionicPlatform, $window, appConfigService, lodash, platformInfo, profileService, uxLanguage, gettextCatalog, openURLService, storageService, scannerService, configService, pincodeService, /* plugins START HERE => */ coinbaseService, glideraService, amazonService, bitpayCardService) {
uxLanguage.init();
$ionicPlatform.ready(function() {
configService.whenAvailable(function(config) {
if (config.pincode && config.pincode.enabled) {
pincodeService.lockChange({
fromSettings: false,
locking: false,
});
}
});
if (screen.width < 768 && platformInfo.isCordova)
screen.lockOrientation('portrait');

View File

@ -5,7 +5,7 @@ angular.module('copayApp.services').factory('pincodeService', function($log, $ro
root.lockChange = function(opts) {
var scope = $rootScope.$new(true);
scope.from = opts.from;
scope.fromSettings = opts.fromSettings;
scope.locking = opts.locking;
$ionicModal.fromTemplateUrl('views/modals/pincode.html', {
scope: scope,

View File

@ -1,5 +1,5 @@
<ion-modal-view id="pin-code" ng-controller="pincodeController">
<div ng-if="from == 'settings'" ng-click="close()" class="close" translate>Close</div>
<div ng-if="fromSettings" ng-click="close()" class="close" translate>Close</div>
<div class="content">
<div class="block-code">
<div class="row">