aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/send/currency-display.js
diff options
context:
space:
mode:
authorDan <danjm.com@gmail.com>2017-11-11 02:47:02 +0800
committerChi Kei Chan <chikeichan@gmail.com>2017-11-11 06:13:29 +0800
commita33ced39946c1448b56aef22ab3573b00d1faeca (patch)
tree25518aff5483c8076d99dca9b3d53ef742b223ef /ui/app/components/send/currency-display.js
parent5a0126f17b3513fa7fa1513f2c52abff19535ac0 (diff)
downloadtangerine-wallet-browser-a33ced39946c1448b56aef22ab3573b00d1faeca.tar.gz
tangerine-wallet-browser-a33ced39946c1448b56aef22ab3573b00d1faeca.tar.zst
tangerine-wallet-browser-a33ced39946c1448b56aef22ab3573b00d1faeca.zip
Focus amount input when click anywhere in amount field container
Diffstat (limited to 'ui/app/components/send/currency-display.js')
-rw-r--r--ui/app/components/send/currency-display.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/ui/app/components/send/currency-display.js b/ui/app/components/send/currency-display.js
index 5057c413c..5bf8d6aa0 100644
--- a/ui/app/components/send/currency-display.js
+++ b/ui/app/components/send/currency-display.js
@@ -82,6 +82,7 @@ CurrencyDisplay.prototype.render = function () {
style: {
borderColor: inError ? 'red' : null,
},
+ onClick: () => this.currencyInput.focus(),
}, [
h('div.currency-display__primary-row', [
@@ -96,6 +97,7 @@ CurrencyDisplay.prototype.render = function () {
onInputChange: newValue => {
handleChange(this.getAmount(newValue))
},
+ inputRef: input => { this.currencyInput = input; },
}),
h('span.currency-display__currency-symbol', primaryCurrency),