diff options
author | Timmy Willison <timmywillisn@gmail.com> | 2013-08-15 14:15:49 -0400 |
---|---|---|
committer | Timmy Willison <timmywillisn@gmail.com> | 2013-08-15 14:15:49 -0400 |
commit | 6318ae6ab90d4b450dfadf32ab95fe52ed6331cb (patch) | |
tree | 50b247fed8569e909e380b281e9145bd1458a39e /src/wrap.js | |
parent | 7627b8b6d9ef6e57dbd20a55b946bd1991c1223e (diff) | |
download | jquery-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.js | 5 |
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(); } }); +}); |