We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4be07dd commit 84e5b15Copy full SHA for 84e5b15
src/jquery.multiselect.js
@@ -149,7 +149,7 @@
149
el.find('option').each(function(i) {
150
var $this = $(this);
151
var parent = this.parentNode;
152
- var description = this.innerHTML;
+ var contents = this.innerHTML;
153
var title = this.title;
154
var value = this.value;
155
var inputID = 'ui-multiselect-' + multiselectID + '-' + (this.id || id + '-option-' + i);
@@ -204,8 +204,8 @@
204
html += ' aria-disabled="true"';
205
}
206
207
- // add the title and close everything off
208
- html += ' /><span>' + description + '</span></label></li>';
+ // add the contents and close everything off
+ html += ' /><span>' + contents + '</span></label></li>';
209
});
210
211
// insert into the DOM
0 commit comments