diff options
author | Chi Kei Chan <chikeichan@gmail.com> | 2017-11-03 06:20:29 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-03 06:20:29 +0800 |
commit | 9f70762434deb1c973665a76623838289e655f22 (patch) | |
tree | 738fccaff1c153c72aea0d0699ddfec0b4c097c7 /ui/app/components/send/memo-textarea.js | |
parent | dc0b3255cf908320b5b46f02765ea03b5b4db6b7 (diff) | |
parent | acc973d543ac65f8db980c0007c248c509345411 (diff) | |
download | tangerine-wallet-browser-9f70762434deb1c973665a76623838289e655f22.tar.gz tangerine-wallet-browser-9f70762434deb1c973665a76623838289e655f22.tar.zst tangerine-wallet-browser-9f70762434deb1c973665a76623838289e655f22.zip |
Merge pull request #2530 from MetaMask/uat
Merge uat into NewUI-flat
Diffstat (limited to 'ui/app/components/send/memo-textarea.js')
-rw-r--r-- | ui/app/components/send/memo-textarea.js | 64 |
1 files changed, 32 insertions, 32 deletions
diff --git a/ui/app/components/send/memo-textarea.js b/ui/app/components/send/memo-textarea.js index 4005b9493..f4bb24bf8 100644 --- a/ui/app/components/send/memo-textarea.js +++ b/ui/app/components/send/memo-textarea.js @@ -1,33 +1,33 @@ -const Component = require('react').Component -const h = require('react-hyperscript') -const inherits = require('util').inherits -const Identicon = require('../identicon') - -module.exports = MemoTextArea - -inherits(MemoTextArea, Component) -function MemoTextArea () { - Component.call(this) -} - -MemoTextArea.prototype.render = function () { - const { memo, identities, onChange } = this.props - - return h('div.send-v2__memo-text-area', [ - - h('textarea.send-v2__memo-text-area__input', { - placeholder: 'Optional', - value: memo, - onChange, - // onBlur: () => { - // this.setErrorsFor('memo') - // }, - onFocus: event => { - // this.clearErrorsFor('memo') - }, - }), - - ]) - -} +// const Component = require('react').Component +// const h = require('react-hyperscript') +// const inherits = require('util').inherits +// const Identicon = require('../identicon') + +// module.exports = MemoTextArea + +// inherits(MemoTextArea, Component) +// function MemoTextArea () { +// Component.call(this) +// } + +// MemoTextArea.prototype.render = function () { +// const { memo, identities, onChange } = this.props + +// return h('div.send-v2__memo-text-area', [ + +// h('textarea.send-v2__memo-text-area__input', { +// placeholder: 'Optional', +// value: memo, +// onChange, +// // onBlur: () => { +// // this.setErrorsFor('memo') +// // }, +// onFocus: event => { +// // this.clearErrorsFor('memo') +// }, +// }), + +// ]) + +// } |