diff --git a/public/views/create.html b/public/views/create.html
index f2cfaff4a..c9bc8a630 100644
--- a/public/views/create.html
+++ b/public/views/create.html
@@ -152,10 +152,11 @@
-
diff --git a/src/css/ionic-migration.css b/src/css/ionic-migration.css
index 3dbe3d652..e02ae4adb 100644
--- a/src/css/ionic-migration.css
+++ b/src/css/ionic-migration.css
@@ -16,6 +16,14 @@
display: inherit;
}
+.bct {
+ background-color: transparent !important;
+ margin-top: -25px;
+ padding-bottom: 30px;
+ right: -27px !important;
+ border-width: 0px;
+}
+
.item-toggle .toggle {
right: 28px;
}
diff --git a/src/js/controllers/create.js b/src/js/controllers/create.js
index 3457651b0..bd7d12330 100644
--- a/src/js/controllers/create.js
+++ b/src/js/controllers/create.js
@@ -79,7 +79,6 @@ angular.module('copayApp.controllers').controller('createController',
self.seedSourceId = $scope.seedSource.id;
};
-
this.setSeedSource = function(src) {
self.seedSourceId = $scope.seedSource.id;
@@ -99,7 +98,7 @@ angular.module('copayApp.controllers').controller('createController',
n: $scope.totalCopayers,
name: $scope.walletName,
myName: $scope.totalCopayers > 1 ? $scope.myName : null,
- networkName: $scope.isTestnet ? 'testnet' : 'livenet',
+ networkName: $scope.testnetEnabled ? 'testnet' : 'livenet',
bwsurl: $scope.bwsurl,
walletPrivKey: $scope._walletPrivKey, // Only for testing
};
@@ -140,7 +139,7 @@ angular.module('copayApp.controllers').controller('createController',
return;
}
- if ( self.seedSourceId == 'trezor')
+ if (self.seedSourceId == 'trezor')
account = account - 1;
opts.account = account;
@@ -183,8 +182,8 @@ angular.module('copayApp.controllers').controller('createController',
}, 100);
}
- function scrollUp(location){
- if(!location) return;
+ function scrollUp(location) {
+ if (!location) return;
$location.hash(location);
$anchorScroll();
};