diff options
author | Timmy Willison <timmywillisn@gmail.com> | 2016-01-08 13:59:53 -0500 |
---|---|---|
committer | Timmy Willison <timmywillisn@gmail.com> | 2016-01-08 14:00:05 -0500 |
commit | 95de105778c2865e90984eed62e83ed790701170 (patch) | |
tree | dea05e84d4216c0da3531e0ecb3f4d424a24383e | |
parent | f5029f586aa7ee8478817778cda1f0aabf673f70 (diff) | |
download | jquery-95de105778c2865e90984eed62e83ed790701170.tar.gz jquery-95de105778c2865e90984eed62e83ed790701170.zip |
Manipulation: re-expose domManip until 3.0
Fixes gh-2225
-rw-r--r-- | src/manipulation.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/manipulation.js b/src/manipulation.js index f73a9db57..73fee5b58 100644 --- a/src/manipulation.js +++ b/src/manipulation.js @@ -402,6 +402,10 @@ jQuery.extend( { } ); jQuery.fn.extend( { + + // Keep domManip exposed until 3.0 (gh-2225) + domManip: domManip, + detach: function( selector ) { return remove( this, selector, true ); }, |