Add/create/import/join. Main sass file

This commit is contained in:
Gustavo Maximiliano Cortez 2016-08-16 17:45:20 -03:00
commit df0f77b383
No known key found for this signature in database
GPG key ID: 15EDAD8D9F2EB1AF
7 changed files with 923 additions and 474 deletions

View file

@ -178,8 +178,8 @@ angular.module('copayApp.controllers').controller('importController',
}, 100);
};
$scope.setDerivationPath = function() {
if ($scope.testnetEnabled)
$scope.setDerivationPath = function(testnetEnabled) {
if (testnetEnabled)
$scope.derivationPath = derivationPathHelper.defaultTestnet;
else
$scope.derivationPath = derivationPathHelper.default;

View file

@ -70,6 +70,6 @@ angular.module('copayApp.directives')
},
controller: controller,
replace: true,
template: '<a id="camera-icon" class="p10" ng-click="openScanner()"><i class="icon-scan size-21"></i></a>'
template: '<a ng-click="openScanner()"><i class="icon ion-qr-scanner"></i></a>'
}
});