Opened 14 years ago
Closed 14 years ago
#3927 closed bug (fixed)
selector.js in svn currently missing ';' so can't be packed (with fix)
Reported by: | beat | Owned by: | john |
---|---|---|---|
Priority: | critical | Milestone: | 1.3.1 |
Component: | selector | Version: | 1.3 |
Keywords: | Cc: | [email protected]… | |
Blocked by: | Blocking: |
Description
line 834: } should be };
This:
return Sizzle.filter( later, tmpSet );
}
EXPOSE jQuery.find = Sizzle;
Should be:
return Sizzle.filter( later, tmpSet );
};
EXPOSE jQuery.find = Sizzle;
Note: See
TracTickets for help on using
tickets.
Fixed in SVN rev [6145].