From 878bb3ab0792197ae74b06f0e8cccb17ef16530e Mon Sep 17 00:00:00 2001 From: Quentin Pradet Date: Mon, 9 Nov 2015 19:02:59 -0500 Subject: [PATCH] Fix select2('') calls on multiple elements This fixes an issue when any of Select2's special options are called on multiple elements, it would only affect the first option in the group. This was because Select2 was only applying any changes to the first element in the group (as chosen by jQuery) instead of applying changes on each and every element within the list. This has the new side effect of special options like `select2('data')` returning the results for the last element in the list instead of the first element. Because the previous functionality was considered unspecified behaviour, this is not being treated as a breaking change. This closes https://github.com/select2/select2/issues/3413 This closes https://github.com/select2/select2/pull/3495 --- src/js/jquery.select2.js | 22 +++++++++++++--------- 1 file changed, 13 insertions(+), 9 deletions(-) diff --git a/src/js/jquery.select2.js b/src/js/jquery.select2.js index 4aeb22b8..b087c94b 100644 --- a/src/js/jquery.select2.js +++ b/src/js/jquery.select2.js @@ -24,18 +24,22 @@ define([ return this; } else if (typeof options === 'string') { - var instance = this.data('select2'); + var ret; - if (instance == null && window.console && console.error) { - console.error( - 'The select2(\'' + options + '\') method was called on an ' + - 'element that is not using Select2.' - ); - } + this.each(function () { + var instance = $(this).data('select2'); - var args = Array.prototype.slice.call(arguments, 1); + if (instance == null && window.console && console.error) { + console.error( + 'The select2(\'' + options + '\') method was called on an ' + + 'element that is not using Select2.' + ); + } - var ret = instance[options].apply(instance, args); + var args = Array.prototype.slice.call(arguments, 1); + + ret = instance[options].apply(instance, args); + }); // Check if we should be returning `this` if ($.inArray(options, thisMethods) > -1) {