1
0
mirror of synced 2024-11-22 13:06:08 +03:00

a small tweak to empty string handling in select2.val(). issue #34

This commit is contained in:
Igor Vaynberg 2012-04-17 08:05:14 -07:00
parent 09d7a2de6e
commit d0caa9131c

View File

@ -1017,8 +1017,8 @@
});
this.updateSelection(data);
} else {
// val is an object
this.opts.element.val((val === null || val === "") ? "" : val.id);
// val is an object. !val is true for [undefined,null,'']
this.opts.element.val(!val ? "" : val.id);
this.updateSelection(val);
}
this.setPlaceholder();