aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorDave Methvin <dave.methvin@gmail.com>2013-04-05 17:30:48 -0400
committerDave Methvin <dave.methvin@gmail.com>2013-04-06 16:00:58 -0400
commit5031c9db4bf22cc04472346eeee8f25a61c5ee68 (patch)
treeebc223d2e27944c85773628bf01a6cf5adcb82a4 /README.md
parent1114611f77ee9cd203db65b120d397dbe2f14d14 (diff)
downloadjquery-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.md1
1 files changed, 1 insertions, 0 deletions
diff --git a/README.md b/README.md
index 573c68502..89a57e6d1 100644
--- a/README.md
+++ b/README.md
@@ -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.