From 3b544825220d6077dd5d52892e64d86e726de613 Mon Sep 17 00:00:00 2001 From: cnanney Date: Fri, 6 Sep 2013 18:57:41 -0500 Subject: [PATCH] Fix focus on select Focus should go back to select2-focusser, not select2-choice. --- select2.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/select2.js b/select2.js index 55ab52f9..8592d687 100644 --- a/select2.js +++ b/select2.js @@ -2225,7 +2225,7 @@ the specific language governing permissions and limitations under the Apache Lic this.close(); if (!options || !options.noFocus) - this.selection.focus(); + this.focusser.focus(); if (!equal(old, this.id(data))) { this.triggerChange({added:data,removed:oldData}); } },