enable button when all words are selected
This commit is contained in:
parent
c3439ef0fe
commit
ef412f2028
1 changed files with 1 additions and 1 deletions
|
|
@ -123,7 +123,7 @@ angular.module('copayApp.controllers').controller('backupController',
|
||||||
};
|
};
|
||||||
|
|
||||||
$scope.shouldContinue = function() {
|
$scope.shouldContinue = function() {
|
||||||
if ($scope.customWords.length == 12)
|
if ($scope.customWords.length == $scope.shuffledMnemonicWords.length)
|
||||||
$scope.selectComplete = true;
|
$scope.selectComplete = true;
|
||||||
else
|
else
|
||||||
$scope.selectComplete = false;
|
$scope.selectComplete = false;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue