Modify ↓
Ticket #5281 (closed bug)
Bug in latest jquery-1.3.2
| Reported by: | nitinasd | Owned by: | nitinasd |
|---|---|---|---|
| Priority: | major | Milestone: | 1.4 |
| Component: | selector | Version: | 1.3.2 |
| Keywords: | Cc: | ||
| Blocking: | Blocked by: |
Description
Line Num 1421 ie
var chunker = /((?:\((?:\([()]+\)|[()]+)+\)|\[(?:\^[\?*\]|['"]['"]*['"]|[[\]'"]+)+\]|
.|[ >+~,(\[
]+)+|[>+~])(\s*,\s*)?/g,
is missing one quote
it should be
var chunker = /((?:\((?:\([()]+\)|[()]+)+\)|\[(?:\^[\?*\]|['"]['"]*['"]|[[\]'"]+)+\]|
.|[ >+~,(\[
]+)+|[>+~]')(\s*,\s*)?/g,
Please check.
Thanks and Regards Nitin Harikant nitinasd@… nitinasd.blogspot.com
Change History
comment:1 Changed 4 years ago by dmethvin
- Owner set to john
- Priority changed from blocker to major
- Component changed from unfilled to selector
comment:2 Changed 4 years ago by davidserduke
Do you have an example of what fails due to that missing quote?
Please follow the bug reporting guidlines and use jsFiddle when providing test cases and demonstrations instead of pasting the code in the ticket.
Note: See
TracTickets for help on using
tickets.
