fixes in mobile layout
This commit is contained in:
parent
c8c82b3cb5
commit
4d040e600d
4 changed files with 6 additions and 6 deletions
|
|
@ -57,11 +57,11 @@
|
||||||
<key>CFBundlePackageType</key>
|
<key>CFBundlePackageType</key>
|
||||||
<string>APPL</string>
|
<string>APPL</string>
|
||||||
<key>CFBundleShortVersionString</key>
|
<key>CFBundleShortVersionString</key>
|
||||||
<string>vRC0.9.0</string>
|
<string>0.8.3</string>
|
||||||
<key>CFBundleSignature</key>
|
<key>CFBundleSignature</key>
|
||||||
<string>????</string>
|
<string>????</string>
|
||||||
<key>CFBundleVersion</key>
|
<key>CFBundleVersion</key>
|
||||||
<string>vRC0.9.0</string>
|
<string>0.8.3</string>
|
||||||
<key>LSRequiresIPhoneOS</key>
|
<key>LSRequiresIPhoneOS</key>
|
||||||
<true/>
|
<true/>
|
||||||
<key>NSMainNibFile</key>
|
<key>NSMainNibFile</key>
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ angular.module('copayApp.controllers').controller('CreateProfileController', fun
|
||||||
|
|
||||||
$scope.init = function() {
|
$scope.init = function() {
|
||||||
identityService.goWalletHome();
|
identityService.goWalletHome();
|
||||||
$scope.isMobile = 1; //isMobile.any();
|
$scope.isMobile = isMobile.any();
|
||||||
|
|
||||||
$scope.createStep = 'storage';
|
$scope.createStep = 'storage';
|
||||||
$scope.useLocalstorage = false;
|
$scope.useLocalstorage = false;
|
||||||
|
|
@ -75,6 +75,7 @@ angular.module('copayApp.controllers').controller('CreateProfileController', fun
|
||||||
$scope.userOrEmail = $scope.useLocalstorage ? form.username.$modelValue : form.email.$modelValue;
|
$scope.userOrEmail = $scope.useLocalstorage ? form.username.$modelValue : form.email.$modelValue;
|
||||||
preconditions.checkState($scope.userOrEmail);
|
preconditions.checkState($scope.userOrEmail);
|
||||||
|
|
||||||
|
$scope.error = null;
|
||||||
$scope.createStep = 'pass';
|
$scope.createStep = 'pass';
|
||||||
$timeout(function() {
|
$timeout(function() {
|
||||||
$scope.$digest();
|
$scope.$digest();
|
||||||
|
|
|
||||||
|
|
@ -21,7 +21,7 @@ angular.module('copayApp.controllers').controller('SettingsController', function
|
||||||
name: 'In the cloud (Insight server)',
|
name: 'In the cloud (Insight server)',
|
||||||
pluginName: 'EncryptedInsightStorage',
|
pluginName: 'EncryptedInsightStorage',
|
||||||
}, {
|
}, {
|
||||||
name: 'In this device (localstorage)',
|
name: 'On this device (localstorage)',
|
||||||
pluginName: 'EncryptedLocalStorage',
|
pluginName: 'EncryptedLocalStorage',
|
||||||
},
|
},
|
||||||
// {
|
// {
|
||||||
|
|
|
||||||
|
|
@ -23,7 +23,7 @@
|
||||||
<div class="large-5 large-centered medium-7 medium-centered columns" ng-show="!$root.starting">
|
<div class="large-5 large-centered medium-7 medium-centered columns" ng-show="!$root.starting">
|
||||||
<div class="logo-setup" ng-show="!$root.iden">
|
<div class="logo-setup" ng-show="!$root.iden">
|
||||||
<img src="img/logo-negative-beta.svg" alt="Copay" width="100">
|
<img src="img/logo-negative-beta.svg" alt="Copay" width="100">
|
||||||
<div ng-include="'views/includes/version.html'"></div>
|
<div class="text-gray" ng-include="'views/includes/version.html'"></div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="p10 box-setup bg-success m10b text-white" ng-show="confirmedEmail">
|
<div class="p10 box-setup bg-success m10b text-white" ng-show="confirmedEmail">
|
||||||
|
|
@ -115,7 +115,6 @@
|
||||||
<div class="clipo">
|
<div class="clipo">
|
||||||
<img src="img/clipo-signin.png" alt="clipo" width="310">
|
<img src="img/clipo-signin.png" alt="clipo" width="310">
|
||||||
</div>
|
</div>
|
||||||
<h2 translate>Sign in to Copay</h2>
|
|
||||||
<div class="p10 m20b size-14 box-setup bg-success text-white" ng-show="anyWallet && !confirmedEmail && !error">
|
<div class="p10 m20b size-14 box-setup bg-success text-white" ng-show="anyWallet && !confirmedEmail && !error">
|
||||||
<div class="left">
|
<div class="left">
|
||||||
<i class="size-36 fi-alert m10r"></i>
|
<i class="size-36 fi-alert m10r"></i>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue