Revert "removed resetpasswordfields from create and join"

This reverts commit 5d10e7ea33.
This commit is contained in:
Kadir Sekha 2018-02-02 12:00:06 -04:00
commit e4830e60c0
2 changed files with 2 additions and 0 deletions

View file

@ -38,6 +38,7 @@ angular.module('copayApp.controllers').controller('createController',
$scope.setTotalCopayers(tc);
updateRCSelect(tc);
resetPasswordFields();
});
$scope.coinChanged = function() {

View file

@ -16,6 +16,7 @@ angular.module('copayApp.controllers').controller('joinController',
$scope.bitcoinAlias = (config.bitcoinAlias || defaults.bitcoinAlias).toUpperCase();
$scope.bitcoinCashAlias = (config.bitcoinCashAlias || defaults.bitcoinCashAlias).toUpperCase();
if (config.cashSupport) $scope.enableCash = true;
resetPasswordFields();
updateSeedSourceSelect();
});