Removed support for //foo | //bar - please use "," instead.
This commit is contained in:
parent
75b6bcdb42
commit
7b439921c4
|
@ -188,8 +188,8 @@ jQuery.extend({
|
||||||
// matched a token
|
// matched a token
|
||||||
if ( t && !foundToken ) {
|
if ( t && !foundToken ) {
|
||||||
// Handle multiple expressions
|
// Handle multiple expressions
|
||||||
if ( !t.indexOf(",") || !t.indexOf("|") ) {
|
if ( !t.indexOf(",") ) {
|
||||||
// Clean teh result set
|
// Clean the result set
|
||||||
if ( ret[0] == context ) ret.shift();
|
if ( ret[0] == context ) ret.shift();
|
||||||
|
|
||||||
// Merge the result sets
|
// Merge the result sets
|
||||||
|
|
Loading…
Reference in a new issue