Skip to content

Commit

Permalink
Fix registration progression bug in Firefox
Browse files Browse the repository at this point in the history
  • Loading branch information
petschekr committed Apr 10, 2016
1 parent 2d468ce commit 74731e8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion World Perspectives/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "world-perspectives",
"version": "3.2.0",
"version": "3.2.1",
"description": "Web app for World Perspectives Symposium day at GFA",
"main": "server.js",
"author": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ <h2>[[symposiumDate.formatted]]</h2>
this.goBackward();
} else if (element.attributes.forward || element.parentElement.attributes.forward) {
// Check if progression is allowed
if (e.srcElement.hasAttribute("disabled"))
if (element.hasAttribute("disabled"))
return;
this.goForward();
}
Expand Down

0 comments on commit 74731e8

Please sign in to comment.