From efc609d0735d2aac2d922480663cd20a28f5fdb0 Mon Sep 17 00:00:00 2001 From: Igor Vaynberg Date: Fri, 31 May 2013 17:14:29 -0700 Subject: [PATCH] close on tab-out. fixes #1341 --- select2.js | 1 + 1 file changed, 1 insertion(+) diff --git a/select2.js b/select2.js index d3a97e64..64e5f755 100644 --- a/select2.js +++ b/select2.js @@ -2421,6 +2421,7 @@ the specific language governing permissions and limitations under the Apache Lic return; case KEY.TAB: this.selectHighlighted({noFocus:true}); + this.close(); return; case KEY.ESC: this.cancel(e);