From 4dce07a431d312228b7c3582df0b518c8afb0a2a Mon Sep 17 00:00:00 2001 From: Igor Vaynberg Date: Mon, 12 Aug 2013 08:43:13 -0700 Subject: [PATCH] fix usecase when a placeholder is not defined but an option with an empty value exists. fixes #1573 --- select2.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/select2.js b/select2.js index be676548..c31c7fcf 100644 --- a/select2.js +++ b/select2.js @@ -2083,11 +2083,11 @@ the specific language governing permissions and limitations under the Apache Lic isPlaceholderOptionSelected: function() { var placeholderOption; - return this.opts.placeholder && - ((placeholderOption = this.getPlaceholderOption()) !== undefined && placeholderOption.is(':selected')) || - (this.opts.element.val() === "") || - (this.opts.element.val() === undefined) || - (this.opts.element.val() === null); + if (!this.opts.placeholder) return false; // no placeholder specified so no option should be considered + return ((placeholderOption = this.getPlaceholderOption()) !== undefined && placeholderOption.is(':selected')) + || (this.opts.element.val() === "") + || (this.opts.element.val() === undefined) + || (this.opts.element.val() === null); }, // single