Skip to content

Commit

Permalink
Merge pull request #6810 from martenson/fix-nonUS-keyboards
Browse files Browse the repository at this point in the history
[18.09] do not rule out numbers that are accessed with shift modifier
  • Loading branch information
mvdbeek committed Oct 4, 2018
2 parents 1c4a4ed + b5a2faf commit 8ea4553
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/galaxy/scripts/mvc/ui/ui-slider.js
Expand Up @@ -44,7 +44,7 @@ var View = Backbone.View.extend({
v == 13 ||
v == 37 ||
v == 39 ||
(v >= 48 && v <= 57 && !pressed[16]) ||
(v >= 48 && v <= 57) ||
(v >= 96 && v <= 105) ||
((v == 190 || v == 110) &&
$(this)
Expand Down

0 comments on commit 8ea4553

Please sign in to comment.