Allow an empty string to be used as the placeholder title.
This commit is contained in:
parent
df7b7ba95c
commit
3ce3ad7fb0
@ -2219,7 +2219,7 @@ the specific language governing permissions and limitations under the Apache Lic
|
|||||||
|
|
||||||
isPlaceholderOptionSelected: function() {
|
isPlaceholderOptionSelected: function() {
|
||||||
var placeholderOption;
|
var placeholderOption;
|
||||||
if (!this.getPlaceholder()) return false; // no placeholder specified so no option should be considered
|
if (this.getPlaceholder() === undefined) return false; // no placeholder specified so no option should be considered
|
||||||
return ((placeholderOption = this.getPlaceholderOption()) !== undefined && placeholderOption.prop("selected"))
|
return ((placeholderOption = this.getPlaceholderOption()) !== undefined && placeholderOption.prop("selected"))
|
||||||
|| (this.opts.element.val() === "")
|
|| (this.opts.element.val() === "")
|
||||||
|| (this.opts.element.val() === undefined)
|
|| (this.opts.element.val() === undefined)
|
||||||
|
Loading…
Reference in New Issue
Block a user