This commit is contained in:
Eric Larchevêque 2015-07-17 16:38:52 +02:00 committed by Matias Alejo Garcia
commit d3cbb03004
4 changed files with 4 additions and 4 deletions

View file

@ -112,7 +112,7 @@
</label> </label>
<div ng-hide="hideSlots"> <div ng-hide="hideSlots">
<label class="line-b oh"><span translate>Select slot number for Ledger key</span> <label class="line-b oh"><span translate>Select slot number for Ledger key</span>
<select class="m10t" ng-model="externalIndex" ng-options="externalIndex as externalIndex for externalIndex in create.externatIndexValues"> <select class="m10t" ng-model="externalIndex" ng-options="externalIndex as externalIndex for externalIndex in create.externalIndexValues">
</select> </select>
</label> </label>
</div> </div>

View file

@ -94,7 +94,7 @@
<div class="large-12 columns" ng-hide="hideSlots"> <div class="large-12 columns" ng-hide="hideSlots">
<label class="line-b oh"> <label class="line-b oh">
<span translate>Select slot number for Ledger key</span> <span translate>Select slot number for Ledger key</span>
<select class="m10t" ng-model="externalIndex" ng-options="externalIndex as externalIndex for externalIndex in join.externatIndexValues"> <select class="m10t" ng-model="externalIndex" ng-options="externalIndex as externalIndex for externalIndex in join.externalIndexValues">
</select> </select>
</label> </label>
</div> </div>

View file

@ -35,7 +35,7 @@ angular.module('copayApp.controllers').controller('createController',
$scope.requiredCopayers = Math.min(parseInt(n / 2 + 1), maxReq); $scope.requiredCopayers = Math.min(parseInt(n / 2 + 1), maxReq);
}; };
this.externatIndexValues = lodash.range(0,20); this.externalIndexValues = lodash.range(0,20);
$scope.externalIndex = 0; $scope.externalIndex = 0;
this.TCValues = lodash.range(2, defaults.limits.totalCopayers + 1); this.TCValues = lodash.range(2, defaults.limits.totalCopayers + 1);
$scope.totalCopayers = defaults.wallet.totalCopayers; $scope.totalCopayers = defaults.wallet.totalCopayers;

View file

@ -4,7 +4,7 @@ angular.module('copayApp.controllers').controller('joinController',
function($scope, $rootScope, $timeout, go, isMobile, notification, profileService, isCordova, isChromeApp, $modal, gettext, lodash, ledger) { function($scope, $rootScope, $timeout, go, isMobile, notification, profileService, isCordova, isChromeApp, $modal, gettext, lodash, ledger) {
var self = this; var self = this;
this.externatIndexValues = lodash.range(0,20); this.externalIndexValues = lodash.range(0,20);
$scope.externalIndex = 0; $scope.externalIndex = 0;
this.isChromeApp = function() { this.isChromeApp = function() {