25
I Use This!
Activity Not Available

Commits : Listings

Analyzed 12 months ago. based on code collected about 1 year ago.
Nov 15, 2022 — Nov 15, 2023
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
Added a fix for handling comment nodes from gEBTN("*") in IE. More... about 16 years ago
Merge branch 'master' of [email protected]:jeresig/sizzle More... about 16 years ago
Tweaked the speed test suite to run more times. More... about 16 years ago
Tweaked the selector tests (there was disagreement between browsers as to if :enabled should make [type=hidden] elements, or not - not a huge issue, imo). More... about 16 years ago
Tweaked the copyright header. More... about 16 years ago
Provided a fallback for attributes that aren't immediately available in the DOM. More... about 16 years ago
Changed to using 'root' instead of 'head' (which is a more appropriate name). More... about 16 years ago
Positional selectors weren't handling multi-selectors properly "div:first, div:last". More... about 16 years ago
Completely re-worked how positional selectors are handled (e.g. :first, :last, etc.). They were handled within the context of an individual query before rather than from a top-down manner which users expect. More... about 16 years ago
Modifed the test file to pull in the jQuery/Sizzle hybrid file. More... about 16 years ago
Fixed an issue where makeArray wasn't appending items to an existing array in makeArray - only if a proper array was passed in. More... about 16 years ago
Fixed ~= to work on space-separated values, not just doing a match. More... about 16 years ago
The head element doesn't exist in documents that don't explictly define one in WebKit - use documentElement instead (still works). More... about 16 years ago
Selectors with no context (thus defaulting to a context of document) was causing errors when a .contextDocument was used (which is null on document). More... about 16 years ago
Removed browser-specific checks for handling makeArray and the getElementById(someName) problems. More... about 16 years ago
Minor tweak to the *-child caching code. More... about 16 years ago
Added support for Sizzle("> div", context) (along with + and ~ as well). More... about 16 years ago
Tweaked the getElementsByClassName detection code to look for the method on the documentElement (which makes sure that custom implementations that are slapped on in browsers, like IE, aren't detected). More... about 16 years ago
Tweaked the contains function to have a generic definition. More... about 16 years ago
Fixing a bug where inline filters were stopping filtering too early. More... about 16 years ago
Fixed an issue with ":first-child > *" (documentElement was getting picked up, which doesn't have a parent, causing problems for the CHILD filters). More... about 16 years ago
Fixed a bug with psuedo-selectors sometimes getting munged by position selectors. More... about 16 years ago
Make the qSA detection more generic. Should eventually move to using qSA on any element. More... about 16 years ago
Added support for a new Sizzle.matches method which takes an expression and an array of elements - which are filtered based upon the expression. More... about 16 years ago
Expose the old jQuery API for adding in :foo selectors. More... about 16 years ago
Forgot to restore the selectors object after qSA is introduced. More... about 16 years ago
Forced contextual selectors (Sizzle("div", document.body)) to have the full selector be contained within the context. More... about 16 years ago
Added more features to the jQuery-specific Sizzle code - now serves as a complete drop-in replacement for the existing src/selector.js file in jQuery. More... about 16 years ago
Make sure that the context actually is a DOM element or DOM document. More... about 16 years ago
Moved the library-specific code outside of Sizzle and added an extra build script to add it back in again. More... about 16 years ago