removed resetpasswordfields from create and join

This commit is contained in:
Kadir Sekha 2018-02-01 18:19:18 -04:00
commit 5d10e7ea33
2 changed files with 0 additions and 2 deletions

View file

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

View file

@ -16,7 +16,6 @@ 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();
});