From 770528d5380b9e30742130d986d196c192b2ac09 Mon Sep 17 00:00:00 2001 From: kumavis Date: Fri, 24 Jun 2016 17:27:42 -0700 Subject: clean - appease the linting machine --- ui/app/components/pending-msg.js | 7 +------ ui/app/components/pending-tx.js | 29 ++++++++--------------------- 2 files changed, 9 insertions(+), 27 deletions(-) (limited to 'ui/app') diff --git a/ui/app/components/pending-msg.js b/ui/app/components/pending-msg.js index a45b828b7..f4bde91dc 100644 --- a/ui/app/components/pending-msg.js +++ b/ui/app/components/pending-msg.js @@ -14,11 +14,6 @@ PendingMsg.prototype.render = function () { var state = this.props var msgData = state.txData - var msgParams = msgData.msgParams || {} - var address = msgParams.from || state.selectedAddress - var identity = state.identities[address] || { address: address } - var account = state.accounts[address] || { address: address } - return ( h('div', { @@ -46,7 +41,7 @@ PendingMsg.prototype.render = function () { }, 'Sign'), ]), ]) - + ) } diff --git a/ui/app/components/pending-tx.js b/ui/app/components/pending-tx.js index cc76cc697..197e0436c 100644 --- a/ui/app/components/pending-tx.js +++ b/ui/app/components/pending-tx.js @@ -15,11 +15,6 @@ PendingTx.prototype.render = function () { var state = this.props var txData = state.txData - var txParams = txData.txParams || {} - var address = txParams.from || state.selectedAddress - var identity = state.identities[address] || { address: address } - var account = state.accounts[address] || { address: address } - return ( h('div', { @@ -38,25 +33,17 @@ PendingTx.prototype.render = function () { h(PendingTxDetails, state), // send + cancel - actionButtons(state), + h('.flex-row.flex-space-around', [ + h('button', { + onClick: state.cancelTransaction, + }, 'Cancel'), + h('button', { + onClick: state.sendTransaction, + }, 'Send'), + ]), ]) ) } - -function actionButtons(state){ - return ( - - h('.flex-row.flex-space-around', [ - h('button', { - onClick: state.cancelTransaction, - }, 'Cancel'), - h('button', { - onClick: state.sendTransaction, - }, 'Send'), - ]) - - ) -} \ No newline at end of file -- cgit