Remove 1-2-3 image from creation/join at Android version

This commit is contained in:
Yemel Jardi 2014-08-15 15:47:13 -03:00
commit 818c01bf52
5 changed files with 6 additions and 3 deletions

View file

@ -5,6 +5,7 @@ angular.module('copayApp.controllers').controller('JoinController',
controllerUtils.redirIfLogged();
$rootScope.fromSetup = false;
$scope.loading = false;
$scope.isMobile = !!window.cordova;
// QR code Scanner
var cameraInput;

View file

@ -14,6 +14,7 @@ angular.module('copayApp.controllers').controller('OpenController',
$scope.wallets = walletFactory.getWallets().sort(cmp);
$scope.selectedWalletId = walletFactory.storage.getLastOpened() || ($scope.wallets[0] && $scope.wallets[0].id);
$scope.openPassword = '';
$scope.isMobile = !!window.cordova;
$scope.open = function(form) {
if (form && form.$invalid) {

View file

@ -40,6 +40,7 @@ angular.module('copayApp.controllers').controller('SetupController',
$rootScope.videoInfo = {};
$scope.loading = false;
$scope.walletPassword = $rootScope.walletPassword;
$scope.isMobile = !!window.cordova;
// ng-repeat defined number of times instead of repeating over array?
$scope.getNumber = function(num) {