diff options
author | Michał Gołębiowski <m.goleb@gmail.com> | 2013-04-08 23:40:08 +0200 |
---|---|---|
committer | Dave Methvin <dave.methvin@gmail.com> | 2013-04-17 23:06:33 -0400 |
commit | 0db70aa1fa084ccf1ef90d9b78382df95bdf9c85 (patch) | |
tree | 6588d1e0f43d977fb7cf0eabda9260d1b9231586 /README.md | |
parent | 12a101729086ec1f9b8b029cd66971c11959bc33 (diff) | |
download | jquery-0db70aa1fa084ccf1ef90d9b78382df95bdf9c85.tar.gz jquery-0db70aa1fa084ccf1ef90d9b78382df95bdf9c85.zip |
Fix #13741. Make wrap/unwrap methods optional; close gh-1236.
move size() test to unit/deprecated;
don't use size() in other tests;
make 2 unit tests actually fire;
code cleanup
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -84,6 +84,7 @@ For example, an app that only used JSONP for `$.ajax()` and did not need to calc - **effects**: The `.animate()` method and its shorthands such as `.slideUp()` or `.hide("slow")`. - **event-alias**: All event attaching/triggering shorthands like `.click()` or `.mouseover()`. - **offset**: The `.offset()`, `.position()`, `.offsetParent()`, `.scrollLeft()`, and `.scrollTop()` methods. +- **wrap**: The `.wrap()`, `.wrapAll()`, `.wrapInner()`, and `.unwrap()` methods. The grunt build process is aware of dependencies across modules. If you explicitly remove a module, its dependent modules will be removed as well. For example, excluding the css module also excludes effects, since the effects module uses `.css()` to animate CSS properties. These dependencies are listed in Gruntfile.js and the build process shows a message for each dependent module it excludes. |