Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v7.20.3 #3598

Merged
merged 3 commits into from
Jul 11, 2024
Merged

v7.20.3 #3598

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import play.PlayScala

name := """sidewalk-webpage"""

version := "7.20.2"
version := "7.20.3"

scalaVersion := "2.10.7"

Expand Down
5 changes: 5 additions & 0 deletions conf/evolutions/default/240.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# --- !Ups
INSERT INTO version VALUES ('7.20.3', now(), 'Fixes broken keyboard shortcuts in Validate.');

# --- !Downs
DELETE FROM version WHERE version_id = '7.20.3';
10 changes: 10 additions & 0 deletions public/javascripts/SVValidate/src/keyboard/Keyboard.js
Original file line number Diff line number Diff line change
Expand Up @@ -165,11 +165,21 @@ function Keyboard(menuUI) {
menuUI.yesButton.removeClass("validate");
status.keyPressed = false;
break;
// "a" key
case 65:
menuUI.yesButton.removeClass("validate");
status.keyPressed = false;
break;
// "n" key
case 78:
menuUI.noButton.removeClass("validate");
status.keyPressed = false;
break;
// "d" key
case 68:
menuUI.noButton.removeClass("validate");
status.keyPressed = false;
break;
// "u" key
case 85:
menuUI.unsureButton.removeClass("validate");
Expand Down