Remove focus thing

This commit is contained in:
James Cole 2017-05-06 10:20:27 +02:00
parent f68d33870b
commit 7f082ea389
No known key found for this signature in database
GPG Key ID: C16961E655E74B5E
2 changed files with 2 additions and 2 deletions

View File

@ -158,7 +158,7 @@ function validateCurrencyForTransfer() {
$('#source_amount_holder').show().find('.non-selectable-currency-symbol').text(sourceSymbol);
if (sourceCurrency === destinationCurrency) {
console.log('Both accounts accept ' + sourceCurrency);
console.log('Both accounts accept #' + sourceCurrency);
$('#destination_amount_holder').hide();
$('#amount_holder').hide();
return;

View File

@ -68,7 +68,7 @@ function updateNativeCurrency() {
$('.currency-option[data-id="' + nativeCurrencyId + '"]').click();
$('[data-toggle="dropdown"]').parent().removeClass('open');
$('select[name="source_account_id"]').focus();
//$('select[name="source_account_id"]').focus();
validateCurrencyForTransfer();
}