From 66b789939f7b15f4d41a77acaed96ae0295d809b Mon Sep 17 00:00:00 2001 From: Eric Barnes Date: Tue, 22 May 2012 09:30:10 -0400 Subject: [PATCH] Adding tab support for tags When you select a tag currently the only way to select it was by using the enter key. This change allows the tab key to also select it. Signed-off-by: Eric Barnes --- select2.js | 1 + 1 file changed, 1 insertion(+) diff --git a/select2.js b/select2.js index 210a1269..f530fb2d 100755 --- a/select2.js +++ b/select2.js @@ -1122,6 +1122,7 @@ killEvent(e); return; case KEY.ENTER: + case KEY.TAB: this.selectHighlighted(); killEvent(e); return;