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

Commit

Permalink
Merge pull request #9 from truffle-box/develop
Browse files Browse the repository at this point in the history
Explicitly passed event object for non-webkit browsers
  • Loading branch information
OnlyOneJMJQ authored Nov 13, 2017
2 parents 3681881 + 3e26f2f commit 0d2a812
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 0d2a812

Please sign in to comment.