1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00

Merge branch 'master' into CopyTxHash

This commit is contained in:
Dan Finlay 2016-06-29 15:58:31 -07:00
commit 2b5c42d27f
3 changed files with 6 additions and 5 deletions

View File

@ -3,6 +3,7 @@
## Current Master
- 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

View File

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

View File

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