diff options
author | Gabriel Kaam <gkaam@octo.com> | 2015-07-06 17:54:46 +0200 |
---|---|---|
committer | Gabriel Kaam <gkaam@octo.com> | 2015-07-06 17:54:46 +0200 |
commit | 65d27b75748fbbede15f01aa6790e4ac82bb35aa (patch) | |
tree | 994b36171355cca06caab4aac4fdb3c2c4754902 | |
parent | 6ecf91fe2873be9c434b3ba9da9ae1385b5e9958 (diff) | |
download | multiple-select-65d27b75748fbbede15f01aa6790e4ac82bb35aa.zip multiple-select-65d27b75748fbbede15f01aa6790e4ac82bb35aa.tar.gz multiple-select-65d27b75748fbbede15f01aa6790e4ac82bb35aa.tar.bz2 |
Fixes typo : ',' were used instead of '+'
-rw-r--r-- | jquery.multiple.select.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/jquery.multiple.select.js b/jquery.multiple.select.js index bdfa1e9..4e34125 100644 --- a/jquery.multiple.select.js +++ b/jquery.multiple.select.js @@ -64,8 +64,8 @@ var that = this; if (this.options.filter) { this.$drop.append( - '<div class="ms-search">', - '<input type="text" autocomplete="off" autocorrect="off" autocapitilize="off" spellcheck="false">', + '<div class="ms-search">' + + '<input type="text" autocomplete="off" autocorrect="off" autocapitilize="off" spellcheck="false">' + '</div>' ); } |