From 7f082ea38914370a711d8f7b08f544033aef1fbb Mon Sep 17 00:00:00 2001 From: James Cole Date: Sat, 6 May 2017 10:20:27 +0200 Subject: [PATCH] Remove focus thing --- public/js/ff/transactions/single/common.js | 2 +- public/js/ff/transactions/single/create.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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(); }