diff options
author | Dave Methvin <dave.methvin@gmail.com> | 2013-04-05 17:30:48 -0400 |
---|---|---|
committer | Dave Methvin <dave.methvin@gmail.com> | 2013-04-06 16:00:58 -0400 |
commit | 5031c9db4bf22cc04472346eeee8f25a61c5ee68 (patch) | |
tree | ebc223d2e27944c85773628bf01a6cf5adcb82a4 /README.md | |
parent | 1114611f77ee9cd203db65b120d397dbe2f14d14 (diff) | |
download | jquery-5031c9db4bf22cc04472346eeee8f25a61c5ee68.tar.gz jquery-5031c9db4bf22cc04472346eeee8f25a61c5ee68.zip |
Fix #13741. Make wrap/unwrap methods optional. Close gh-1222.
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -86,6 +86,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. - **sizzle**: The Sizzle selector engine. When this module is excluded, it is replaced by a rudimentary selector engine based on the browser's `querySelectorAll` method that does not support jQuery selector extensions or enhanced semantics. See the selector-native.js file for details. 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. |