Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
jquery selector: Replacing {0,1} for ? in a regex.
- Loading branch information
Showing
with
1 addition
and
1 deletion.
-
+1
−1
src/selector.js
There are no files selected for viewing
|
|
@@ -246,7 +246,7 @@ var Expr = Sizzle.selectors = { |
|
|
ID: /#((?:[\w\u0128-\uFFFF_-]|\\.)+)/, |
|
|
CLASS: /\.((?:[\w\u0128-\uFFFF_-]|\\.)+)/, |
|
|
NAME: /\[name=['"]*((?:[\w\u0128-\uFFFF_-]|\\.)+)['"]*\]/, |
|
|
ATTR: /\[((?:[\w\u0128-\uFFFF_-]|\\.)+)\s*(?:(\S{0,1}=)\s*(['"]*)(.*?)\3|)\]/, |
|
|
ATTR: /\[((?:[\w\u0128-\uFFFF_-]|\\.)+)\s*(?:(\S?=)\s*(['"]*)(.*?)\3|)\]/, |
|
|
TAG: /^((?:[\w\u0128-\uFFFF\*_-]|\\.)+)/, |
|
|
CHILD: /:(only|nth|last|first)-child\(?(even|odd|[\dn+-]*)\)?/, |
|
|
POS: /:(nth|eq|gt|lt|first|last|even|odd)\(?(\d*)\)?(?:[^-]|$)/, |
|
|
|