aboutsummaryrefslogtreecommitdiffstats
path: root/src/wrap.js
diff options
context:
space:
mode:
authorTimmy Willison <timmywillisn@gmail.com>2013-08-15 14:15:49 -0400
committerTimmy Willison <timmywillisn@gmail.com>2013-08-15 14:15:49 -0400
commit6318ae6ab90d4b450dfadf32ab95fe52ed6331cb (patch)
tree50b247fed8569e909e380b281e9145bd1458a39e /src/wrap.js
parent7627b8b6d9ef6e57dbd20a55b946bd1991c1223e (diff)
downloadjquery-6318ae6ab90d4b450dfadf32ab95fe52ed6331cb.tar.gz
jquery-6318ae6ab90d4b450dfadf32ab95fe52ed6331cb.zip
AMD-ify jQuery sourcegit s! Woo! Fixes #14113, #14163.
Diffstat (limited to 'src/wrap.js')
-rw-r--r--src/wrap.js5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/wrap.js b/src/wrap.js
index 5968adbc6..1859dca11 100644
--- a/src/wrap.js
+++ b/src/wrap.js
@@ -1,3 +1,7 @@
+define([
+ "./core",
+ "./traversing" // parent, contents
+], function( jQuery ) {
jQuery.fn.extend({
wrapAll: function( html ) {
var wrap;
@@ -67,3 +71,4 @@ jQuery.fn.extend({
}).end();
}
});
+});