aboutsummaryrefslogtreecommitdiffstats
path: root/src/jqLite.js
diff options
context:
space:
mode:
authorVojta Jina2011-10-28 00:43:04 -0700
committerIgor Minar2011-10-30 22:31:03 -0700
commit7d0c256ecd0fc22126090c4aeb18fd2c9fff2baa (patch)
tree2d0adec809e1305f4c95aada2f09a1dead8f9129 /src/jqLite.js
parent6cbe096dbf9bde91972a9d5e60ade616ffe3888f (diff)
downloadangular.js-7d0c256ecd0fc22126090c4aeb18fd2c9fff2baa.tar.bz2
docs(jqlite): add missing methods
Diffstat (limited to 'src/jqLite.js')
-rw-r--r--src/jqLite.js10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/jqLite.js b/src/jqLite.js
index 270252bf..3ed0888a 100644
--- a/src/jqLite.js
+++ b/src/jqLite.js
@@ -38,21 +38,29 @@
* - [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.
* - [hasClass()](http://api.jquery.com/hasClass/)
+ * - [html()](http://api.jquery.com/html/)
+ * - [next()](http://api.jquery.com/next/)
* - [parent()](http://api.jquery.com/parent/)
+ * - [prepend()](http://api.jquery.com/prepend/)
* - [prop()](http://api.jquery.com/prop/)
+ * - [ready()](http://api.jquery.com/ready/)
* - [remove()](http://api.jquery.com/remove/)
* - [removeAttr()](http://api.jquery.com/removeAttr/)
* - [removeClass()](http://api.jquery.com/removeClass/)
* - [removeData()](http://api.jquery.com/removeData/)
* - [replaceWith()](http://api.jquery.com/replaceWith/)
* - [text()](http://api.jquery.com/text/)
- * - [trigger()](http://api.jquery.com/trigger/)
+ * - [toggleClass()](http://api.jquery.com/toggleClass/)
* - [unbind()](http://api.jquery.com/unbind/)
+ * - [val()](http://api.jquery.com/val/)
*
* ## In addtion to the above, Angular privides an additional method to both jQuery and jQuery lite:
*
* - `scope()` - retrieves the current Angular scope of the element.
+ * - `inheritedData()` - same as `data()`, but walks up the DOM until a value is found or the top
+ * parent element is reached.
*
* @param {string|DOMElement} element HTML string or DOMElement to be wrapped into jQuery.
* @returns {Object} jQuery object.