diff options
Diffstat (limited to 'jquery.multiple.select.js')
-rw-r--r-- | jquery.multiple.select.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/jquery.multiple.select.js b/jquery.multiple.select.js index 7ffab23..c0b163e 100644 --- a/jquery.multiple.select.js +++ b/jquery.multiple.select.js @@ -76,7 +76,7 @@ $.each(this.$el.children(), function(i, elm) { html.push(that.optionToHtml(i, elm)); }); - html.push('<li class="ms-no-results">No matches found</li>'); + html.push('<li class="ms-no-results">'+this.options.noMatchesFound+'</li>'); html.push('</ul>'); this.$drop.html(html.join('')); this.$drop.find('ul').css('max-height', this.options.maxHeight + 'px'); @@ -448,6 +448,7 @@ allSelected: 'All selected', minumimCountSelected: 3, countSelected: '# of % selected', + noMatchesFound: 'No matches found', multiple: false, multipleWidth: 80, single: false, |