Selaa lähdekoodia

Merge pull request #2287 from eduardojmatos/master

Testing if the dropdown is opened before call positionDropdown
Kevin Brown 11 vuotta sitten
vanhempi
commit
8b463bff14
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. 1 1
      select2.js

+ 1 - 1
select2.js

@@ -1396,7 +1396,7 @@ the specific language governing permissions and limitations under the Apache Lic
             var that = this;
             this.container.parents().add(window).each(function () {
                 $(this).on(resize+" "+scroll+" "+orient, function (e) {
-                    that.positionDropdown();
+                    if (that.opened()) that.positionDropdown();
                 });
             });