diff --git a/public/js/ff/transactions/single/common.js b/public/js/ff/transactions/single/common.js index d98ac6afce..0fd23dd6ac 100644 --- a/public/js/ff/transactions/single/common.js +++ b/public/js/ff/transactions/single/common.js @@ -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; diff --git a/public/js/ff/transactions/single/create.js b/public/js/ff/transactions/single/create.js index 61806b786f..56109f855c 100644 --- a/public/js/ff/transactions/single/create.js +++ b/public/js/ff/transactions/single/create.js @@ -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(); }