Bug Tracker

Opened 15 years ago

Closed 13 years ago

Last modified 12 years ago

#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 SDraconis

Sorry, the line should be

var words = options.multiple ? value.split( options.multipleSeparator ) : [value];

comment:2 Changed 13 years ago by dmethvin

Resolution: invalid
Status: newclosed

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 anonymous

comment:4 Changed 12 years ago by anjumasim

Last edited 12 years ago by anjumasim (previous) (diff)
Note: See TracTickets for help on using tickets.