diff options
author | Dan <danjm.com@gmail.com> | 2018-05-01 10:55:36 +0800 |
---|---|---|
committer | Dan <danjm.com@gmail.com> | 2018-05-01 11:00:38 +0800 |
commit | e488c0eeeace80708285fa5e7d83f3fa219a86c8 (patch) | |
tree | a89245303d26bb346d24362e49c1c0a79d9a29fb /ui/app/components/send/memo-textarea.js | |
parent | 954394f81090b1a6a4afe55243caa3671b88addc (diff) | |
download | dexon-wallet-e488c0eeeace80708285fa5e7d83f3fa219a86c8.tar.gz dexon-wallet-e488c0eeeace80708285fa5e7d83f3fa219a86c8.tar.zst dexon-wallet-e488c0eeeace80708285fa5e7d83f3fa219a86c8.zip |
Delete dead send code.
Diffstat (limited to 'ui/app/components/send/memo-textarea.js')
-rw-r--r-- | ui/app/components/send/memo-textarea.js | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/ui/app/components/send/memo-textarea.js b/ui/app/components/send/memo-textarea.js deleted file mode 100644 index f4bb24bf..00000000 --- a/ui/app/components/send/memo-textarea.js +++ /dev/null @@ -1,33 +0,0 @@ -// 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') -// }, -// }), - -// ]) - -// } - |