#3279 closed bug (invalid)
[autocomplete] trimWords splits on multipleSeparator regardless of options.multiple setting
Reported by: | SDraconis | Owned by: | |
---|---|---|---|
Priority: | minor | Milestone: | 1.3 |
Component: | plugin | Version: | 1.2.6 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
This is for Jörn Zaefferer's AutoComplete plugin (http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/).
The trimWords function will always split the value on options.multipleSeparator, even if options.multiple == false. The fix is to change the line
var words = value.split( options.multipleSeparator );
to
var words = options.multiple ? value.split( options.multipleSeparator ) : value;
Change History (4)
comment:1 Changed 15 years ago by
comment:2 Changed 13 years ago by
Resolution: | → invalid |
---|---|
Status: | new → closed |
This is not a jQuery core bug. Please report plugin bugs to the plugin's author, or ask on the jQuery forums. jQuery UI bugs should be reported on the UI bug tracker, http://dev.jqueryui.com .
comment:3 Changed 12 years ago by
Note: See
TracTickets for help on using
tickets.
Sorry, the line should be