aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app
diff options
context:
space:
mode:
authorfrankiebee <frankie.diamond@gmail.com>2017-04-24 18:35:45 +0800
committerfrankiebee <frankie.diamond@gmail.com>2017-04-24 18:35:45 +0800
commit1eda55c85a958eef7814fadd29b257c5fbf884e0 (patch)
tree47608c1491dc14a29786c4cbbc30a699b667af27 /ui/app
parent2e75011778fdf0fdb407e328f79998f948ec1a82 (diff)
downloadtangerine-wallet-browser-1eda55c85a958eef7814fadd29b257c5fbf884e0.tar.gz
tangerine-wallet-browser-1eda55c85a958eef7814fadd29b257c5fbf884e0.tar.zst
tangerine-wallet-browser-1eda55c85a958eef7814fadd29b257c5fbf884e0.zip
Fix issue where stopPropagation didnt stop submitting the tx when clicking buy button
Diffstat (limited to 'ui/app')
-rw-r--r--ui/app/conf-tx.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/app/conf-tx.js b/ui/app/conf-tx.js
index 3b8618992..770f79b19 100644
--- a/ui/app/conf-tx.js
+++ b/ui/app/conf-tx.js
@@ -141,7 +141,7 @@ function currentTxView (opts) {
}
ConfirmTxScreen.prototype.buyEth = function (address, event) {
- this.stopPropagation(event)
+ event.preventDefault()
this.props.dispatch(actions.buyEthView(address))
}