diff options
author | zhixin <wenzhixin2010@gmail.com> | 2014-05-16 16:30:17 +0800 |
---|---|---|
committer | zhixin <wenzhixin2010@gmail.com> | 2014-05-16 16:30:17 +0800 |
commit | 636e0235d9735b414c10a40c17e29e76af88a795 (patch) | |
tree | 355a1587cf4363cfe5007065d4dadeb431a7debf /jquery.multiple.select.js | |
parent | fd6040d823e188b0e8a9872c06f99efc70a995b2 (diff) | |
download | multiple-select-636e0235d9735b414c10a40c17e29e76af88a795.zip multiple-select-636e0235d9735b414c10a40c17e29e76af88a795.tar.gz multiple-select-636e0235d9735b414c10a40c17e29e76af88a795.tar.bz2 |
Format the code.
Diffstat (limited to 'jquery.multiple.select.js')
-rw-r--r-- | jquery.multiple.select.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/jquery.multiple.select.js b/jquery.multiple.select.js index c0b163e..3b79f8a 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">'+this.options.noMatchesFound+'</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'); |