From 88af7ce387730afea298570f6664e2a3fe744527 Mon Sep 17 00:00:00 2001 From: Igor Vaynberg Date: Wed, 3 Jul 2013 22:16:42 -0700 Subject: [PATCH] add missing semis. fixes #1489 --- select2.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/select2.js b/select2.js index bd3ab0a4..e471d7d8 100644 --- a/select2.js +++ b/select2.js @@ -769,7 +769,7 @@ the specific language governing permissions and limitations under the Apache Lic // Calculate size of scrollbar scrollBarDimensions = scrollBarDimensions || measureScrollbar(); - this.autofocus = opts.element.prop("autofocus") + this.autofocus = opts.element.prop("autofocus"); opts.element.prop("autofocus", false); if (this.autofocus) this.focus(); }, @@ -2403,7 +2403,7 @@ the specific language governing permissions and limitations under the Apache Lic //killEvent(e); _this.search[0].focus(); _this.selectChoice($(this)); - }) + }); // rewrite labels from original element to focusser this.search.attr("id", "s2id_autogen"+nextUid());