enable button when all words are selected

This commit is contained in:
Gabriel Bazán 2016-07-06 14:43:21 -03:00
commit ef412f2028

View file

@ -123,7 +123,7 @@ angular.module('copayApp.controllers').controller('backupController',
};
$scope.shouldContinue = function() {
if ($scope.customWords.length == 12)
if ($scope.customWords.length == $scope.shuffledMnemonicWords.length)
$scope.selectComplete = true;
else
$scope.selectComplete = false;