diff --git a/css/main.css b/css/main.css index 62045d634..4b98dc87b 100644 --- a/css/main.css +++ b/css/main.css @@ -925,6 +925,18 @@ button, .button, p { margin-left: 0; } +.addresses .list-addr i { + position: absolute; + top: -25px; + left: 6px; + cursor: pointer; +} + +.addresses .list-addr contact { + margin-left: 42px; + cursor: text; +} + .pointer { cursor: pointer; } diff --git a/js/controllers/join.js b/js/controllers/join.js index 41ee28f36..425e15106 100644 --- a/js/controllers/join.js +++ b/js/controllers/join.js @@ -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; diff --git a/js/controllers/open.js b/js/controllers/open.js index ccf0ebb92..9af583833 100644 --- a/js/controllers/open.js +++ b/js/controllers/open.js @@ -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) { diff --git a/js/controllers/setup.js b/js/controllers/setup.js index ee9d48d33..2c353c209 100644 --- a/js/controllers/setup.js +++ b/js/controllers/setup.js @@ -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) { diff --git a/mobile/res/drawable/screen.9.png b/mobile/res/drawable/screen.9.png index aadb2c99a..5ca954990 100644 Binary files a/mobile/res/drawable/screen.9.png and b/mobile/res/drawable/screen.9.png differ diff --git a/views/addresses.html b/views/addresses.html index b4ce4a31e..3381fd08b 100644 --- a/views/addresses.html +++ b/views/addresses.html @@ -10,9 +10,9 @@