1
0
mirror of synced 2024-11-26 23:06:02 +03:00

Merge pull request #444 from kevin-brown/master

Fixes 424: Improved Placeholder Detection
This commit is contained in:
Igor Vaynberg 2012-09-24 14:43:14 -07:00
commit 0c11ed7a9c

View File

@ -1587,7 +1587,7 @@
// single
initSelection: function () {
var selected;
if (this.opts.element.val() === "") {
if (this.opts.element.val() === "" && this.opts.element.text() === "") {
this.close();
this.setPlaceholder();
} else {
@ -1921,7 +1921,7 @@
// multi
initSelection: function () {
var data;
if (this.opts.element.val() === "") {
if (this.opts.element.val() === "" && this.opts.element.text() === "") {
this.updateSelection([]);
this.close();
// set the placeholder if necessary