diff options
| author | frankiebee <frankie.diamond@gmail.com> | 2017-04-24 18:35:45 +0800 |
|---|---|---|
| committer | frankiebee <frankie.diamond@gmail.com> | 2017-04-24 18:35:45 +0800 |
| commit | 1eda55c85a958eef7814fadd29b257c5fbf884e0 (patch) | |
| tree | 47608c1491dc14a29786c4cbbc30a699b667af27 | |
| parent | 2e75011778fdf0fdb407e328f79998f948ec1a82 (diff) | |
| download | tangerine-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
| -rw-r--r-- | ui/app/conf-tx.js | 2 |
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)) } |
