aboutsummaryrefslogtreecommitdiffstats
path: root/src/jqLite.js
diff options
context:
space:
mode:
authorChristoph Burgdorf2013-04-03 11:29:04 +0300
committerIgor Minar2013-04-11 15:11:28 -0700
commit15d80af53c3eac09eab2154b3e7a7084f9f8d181 (patch)
treec7832cb57e523ea977f32f5f28cbea5a80ca3c7a /src/jqLite.js
parenta92bb2e02564e9e6cec4ec6c15c3e058a8f37de5 (diff)
downloadangular.js-15d80af53c3eac09eab2154b3e7a7084f9f8d181.tar.bz2
docs(jqLite): clarified that children/parent do not support selectors
Diffstat (limited to 'src/jqLite.js')
-rw-r--r--src/jqLite.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/jqLite.js b/src/jqLite.js
index 1c2aee3c..cf63c5df 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/)
*