Merge branch 'master' into CopyTxHash

feature/default_network_editable
Dan Finlay 8 years ago
commit 2b5c42d27f
  1. 1
      CHANGELOG.md
  2. 4
      app/scripts/lib/notifications.js
  3. 4
      ui/app/components/pending-tx.js

@ -3,6 +3,7 @@
## Current Master ## Current Master
- Add copy transaction hash button to completed transaction list items. - Add copy transaction hash button to completed transaction list items.
- Unify wording for transaction approve/reject options on notifications and the extension.
## 2.4.5 2016-06-29 ## 2.4.5 2016-06-29

@ -96,9 +96,9 @@ function showNotification (state) {
title: state.title, title: state.title,
message: '', message: '',
buttons: [{ buttons: [{
title: 'confirm', title: 'Approve',
}, { }, {
title: 'cancel', title: 'Reject',
}], }],
}) })
notificationHandlers[id] = { notificationHandlers[id] = {

@ -36,10 +36,10 @@ PendingTx.prototype.render = function () {
h('.flex-row.flex-space-around', [ h('.flex-row.flex-space-around', [
h('button', { h('button', {
onClick: state.cancelTransaction, onClick: state.cancelTransaction,
}, 'Cancel'), }, 'Reject'),
h('button', { h('button', {
onClick: state.sendTransaction, onClick: state.sendTransaction,
}, 'Send'), }, 'Approve'),
]), ]),
]) ])

Loading…
Cancel
Save