Skip to content
This repository has been archived by the owner on Mar 11, 2024. It is now read-only.

Commit

Permalink
Explicitly passed event object for non-webkit browsers
Browse files Browse the repository at this point in the history
  • Loading branch information
OnlyOneJMJQ committed Nov 13, 2017
1 parent e4d1122 commit 3e26f2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/js/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ App = {
$(document).on('click', '#transferButton', App.handleTransfer);
},

handleTransfer: function() {
handleTransfer: function(event) {
event.preventDefault();

var amount = parseInt($('#TTTransferAmount').val());
Expand Down

0 comments on commit 3e26f2f

Please sign in to comment.