Skip to content

Commit

Permalink
fixed issue in js
Browse files Browse the repository at this point in the history
  • Loading branch information
spatil committed Apr 5, 2014
1 parent 5098842 commit 69aadad
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/assets/javascripts/grid.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ function navigateGrid(e) {
case key.tab: {
if(tab==null) {
tab=1;
$("dl").first.first.focus();
$("dl:first").focus();
}
break;
}
Expand Down Expand Up @@ -65,8 +65,8 @@ break;
}

$(document).ready(function() {
$(".application").bind("keyup", function(e) {
$(".application").on("keyup", function(e) {
navigateGrid(e);
});// End bind handler
});// End bind handler
});

0 comments on commit 69aadad

Please sign in to comment.