Skip to content

Commit

Permalink
LongTextEditor should use args.grid
Browse files Browse the repository at this point in the history
  • Loading branch information
Rafael Bodill committed Jul 31, 2012
1 parent e4f25cb commit 8d911de
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions slick.editors.js
Original file line number Diff line number Diff line change
Expand Up @@ -445,10 +445,10 @@
scope.cancel();
} else if (e.which == $.ui.keyCode.TAB && e.shiftKey) {
e.preventDefault();
grid.navigatePrev();
args.grid.navigatePrev();
} else if (e.which == $.ui.keyCode.TAB) {
e.preventDefault();
grid.navigateNext();
args.grid.navigateNext();
}
};

Expand Down

0 comments on commit 8d911de

Please sign in to comment.