]> source.dussan.org Git - jquery.git/commitdiff
Add warnings and ignore the built Sizzle file.
authorDave Methvin <dave.methvin@gmail.com>
Wed, 27 Feb 2013 02:59:08 +0000 (21:59 -0500)
committerDave Methvin <dave.methvin@gmail.com>
Thu, 28 Feb 2013 03:45:55 +0000 (22:45 -0500)
.gitignore
src/selector-native.js

index 9868a53695b3e1c5f5dcad61cebfc8b753152939..1040aefd47d7653c0dc61d212fd28496a40861a9 100644 (file)
@@ -1,3 +1,4 @@
+src/selector-sizzle.js
 src/selector.js
 dist
 .project
index 11bf325072a5a2a3eddecb6cdb45a847e33b3eed..289b350288d572aa39e66f3ef356c310724d2a28 100644 (file)
@@ -1,3 +1,28 @@
+/*
+ * Optional (non-Sizzle) selector module for custom builds.
+ *
+ * Note that this DOES NOT SUPPORT many documented jQuery
+ * features in exchange for its smaller size:
+ *
+ * Attribute not equal selector
+ * Positional selectors (:first; :eq(n); :odd; etc.)
+ * Type selectors (:input; :checkbox; :button; etc.)
+ * State-based selectors (:animated; :visible; :hidden; etc.)
+ * :has(selector)
+ * :not(complex selector)
+ * custom selectors via Sizzle extensions
+ * Leading combinators (e.g., $collection.find("> *"))
+ * Reliable functionality on XML fragments
+ * Requiring all parts of a selector to match elements under context
+ *   (e.g., $div.find("div > *") now matches children of $div)
+ * Matching against non-elements
+ * Reliable sorting of disconnected nodes
+ * querySelectorAll bug fixes (e.g., unreliable :focus on WebKit)
+ *
+ * If any of these are unacceptable tradeoffs, either use Sizzle or
+ * customize this stub for the project's specific needs.
+ */
+
 var selector_hasDuplicate,
        matches = docElem.matchesSelector ||
                docElem.mozMatchesSelector ||