Skip to content

Commit

Permalink
Merge pull request #17 from GIP-RECIA/TAB_keyPressed_issue
Browse files Browse the repository at this point in the history
Tab key pressed issue with loginForm
  • Loading branch information
vbonamy committed Aug 12, 2013
2 parents cc9fb42 + 962f133 commit d23fdfd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/webapp/js/esup-stock.js
Original file line number Diff line number Diff line change
Expand Up @@ -2134,7 +2134,7 @@ $.authenticate = function(dir, username, password) { authenticate(dir, username,
});

$(document).keydown(function(e) {

if ($("#browserArea #authenticationForm").length) {return;}
if(e.which == 17) { isCtrl=true; return; }
if(e.which == 16) { isShift=true; return; }

Expand Down

0 comments on commit d23fdfd

Please sign in to comment.