From 9f581285d88128b29a01fc1e5fd2d445d610b553 Mon Sep 17 00:00:00 2001 From: Kevin Brown Date: Sat, 14 May 2016 21:02:44 -0400 Subject: [PATCH] Renamed focusFirstItem method This renames the `focusFirstItem` method to `highlightFirstItem`, which better reflects what is actually happening. This also ensures that the highlight is visible when it is moved by calling `ensureHighlightVisible`. This closes https://github.com/select2/select2/issues/3479 This closes https://github.com/select2/select2/pull/4238 --- src/js/select2/results.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/js/select2/results.js b/src/js/select2/results.js index 3c39f39d..a16b65fd 100644 --- a/src/js/select2/results.js +++ b/src/js/select2/results.js @@ -97,8 +97,7 @@ define([ return sorter(data); }; - Results.prototype.focusFirstItem = function () { - + Results.prototype.highlightFirstItem = function () { var $options = this.$results .find('.select2-results__option[aria-selected]'); @@ -114,6 +113,7 @@ define([ $options.first().trigger('mouseenter'); } + this.ensureHighlightVisible(); }; Results.prototype.setClasses = function () { @@ -253,7 +253,7 @@ define([ if (container.isOpen()) { self.setClasses(); - self.focusFirstItem(); + self.highlightFirstItem(); } }); @@ -276,7 +276,7 @@ define([ } self.setClasses(); - self.focusFirstItem(); + self.highlightFirstItem(); }); container.on('unselect', function () { @@ -285,7 +285,7 @@ define([ } self.setClasses(); - self.focusFirstItem(); + self.highlightFirstItem(); }); container.on('open', function () {