aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristoph Burgdorf2013-04-03 11:29:04 +0300
committerIgor Minar2013-04-11 15:11:51 -0700
commitb2aec3706d2ea4376cdf80462053ecee33c8bf9b (patch)
tree776131f5ecbf5ee484f359d3b0612b49657b8ace
parentd577c5def1b79fef0e4db2edea0aff65125976e0 (diff)
downloadangular.js-b2aec3706d2ea4376cdf80462053ecee33c8bf9b.tar.bz2
docs(jqLite): clarified that children/parent do not support selectors
-rw-r--r--src/jqLite.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/jqLite.js b/src/jqLite.js
index 5ef46df6..78f9f088 100644
--- a/src/jqLite.js
+++ b/src/jqLite.js
@@ -32,18 +32,18 @@
* - [after()](http://api.jquery.com/after/)
* - [append()](http://api.jquery.com/append/)
* - [attr()](http://api.jquery.com/attr/)
- * - [bind()](http://api.jquery.com/bind/)
- * - [children()](http://api.jquery.com/children/)
+ * - [bind()](http://api.jquery.com/bind/) - Does not support namespaces
+ * - [children()](http://api.jquery.com/children/) - Does not support selectors
* - [clone()](http://api.jquery.com/clone/)
* - [contents()](http://api.jquery.com/contents/)
* - [css()](http://api.jquery.com/css/)
* - [data()](http://api.jquery.com/data/)
* - [eq()](http://api.jquery.com/eq/)
- * - [find()](http://api.jquery.com/find/) - Limited to lookups by tag name.
+ * - [find()](http://api.jquery.com/find/) - Limited to lookups by tag name
* - [hasClass()](http://api.jquery.com/hasClass/)
* - [html()](http://api.jquery.com/html/)
- * - [next()](http://api.jquery.com/next/)
- * - [parent()](http://api.jquery.com/parent/)
+ * - [next()](http://api.jquery.com/next/) - Does not support selectors
+ * - [parent()](http://api.jquery.com/parent/) - Does not support selectors
* - [prepend()](http://api.jquery.com/prepend/)
* - [prop()](http://api.jquery.com/prop/)
* - [ready()](http://api.jquery.com/ready/)
@@ -55,7 +55,7 @@
* - [text()](http://api.jquery.com/text/)
* - [toggleClass()](http://api.jquery.com/toggleClass/)
* - [triggerHandler()](http://api.jquery.com/triggerHandler/) - Doesn't pass native event objects to handlers.
- * - [unbind()](http://api.jquery.com/unbind/)
+ * - [unbind()](http://api.jquery.com/unbind/) - Does not support namespaces
* - [val()](http://api.jquery.com/val/)
* - [wrap()](http://api.jquery.com/wrap/)
*