1
0
mirror of synced 2024-11-22 04:56:08 +03:00

small code cleanup

This commit is contained in:
Igor Vaynberg 2012-03-29 11:43:39 -07:00
parent b30b455505
commit eddc40934c

View File

@ -772,8 +772,10 @@
};
SingleSelect2.prototype.updateSelection = function (data) {
this.selection.find("span").html(this.opts.formatSelection(data));
this.selection.removeClass("select2-default");
this.selection
.find("span")
.html(this.opts.formatSelection(data))
.removeClass("select2-default");
if (this.opts.allowClear && this.getPlaceholder() !== undefined) {
this.selection.find("abbr").show();
}
@ -790,8 +792,9 @@
if (this.select) {
// val is an id
this.select.val(val);
this.select.find(":selected").each(function () {
this.select
.val(val)
.find(":selected").each(function () {
data = {id: $(this).attr("value"), text: $(this).text()};
return false;
});