From d5929e5c42e230fc0a52337f86b5850e68516563 Mon Sep 17 00:00:00 2001 From: brunobar79 Date: Mon, 23 Jul 2018 22:10:57 -0400 Subject: added qr code scanner icon in send transaction --- ui/app/components/ens-input.js | 1 + 1 file changed, 1 insertion(+) (limited to 'ui/app/components/ens-input.js') diff --git a/ui/app/components/ens-input.js b/ui/app/components/ens-input.js index b9f99b3d1..cfdf663a5 100644 --- a/ui/app/components/ens-input.js +++ b/ui/app/components/ens-input.js @@ -54,6 +54,7 @@ EnsInput.prototype.render = function () { const opts = extend(props, { list: 'addresses', onChange: this.onChange.bind(this), + qrScanner: true, }) return h('div', { style: { width: '100%', position: 'relative' }, -- cgit v1.2.3 From e9a0feb9e909d59b9945fd367231cc4e47327873 Mon Sep 17 00:00:00 2001 From: brunobar79 Date: Fri, 3 Aug 2018 20:11:46 -0400 Subject: fixed issue with input --- ui/app/components/ens-input.js | 1 + 1 file changed, 1 insertion(+) (limited to 'ui/app/components/ens-input.js') diff --git a/ui/app/components/ens-input.js b/ui/app/components/ens-input.js index cfdf663a5..ab37306d2 100644 --- a/ui/app/components/ens-input.js +++ b/ui/app/components/ens-input.js @@ -27,6 +27,7 @@ function EnsInput () { } EnsInput.prototype.onChange = function (recipient) { + debugger const network = this.props.network const networkHasEnsSupport = getNetworkEnsSupport(network) -- cgit v1.2.3 From b1ddaafba22b6950cb6e9f8cce87db67bec0f299 Mon Sep 17 00:00:00 2001 From: brunobar79 Date: Fri, 3 Aug 2018 20:12:30 -0400 Subject: lint --- ui/app/components/ens-input.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ui/app/components/ens-input.js') diff --git a/ui/app/components/ens-input.js b/ui/app/components/ens-input.js index ab37306d2..f538fd555 100644 --- a/ui/app/components/ens-input.js +++ b/ui/app/components/ens-input.js @@ -27,7 +27,7 @@ function EnsInput () { } EnsInput.prototype.onChange = function (recipient) { - debugger + const network = this.props.network const networkHasEnsSupport = getNetworkEnsSupport(network) -- cgit v1.2.3