diff options
author | Timmy Willison <timmywillisn@gmail.com> | 2016-01-08 13:59:53 -0500 |
---|---|---|
committer | Timmy Willison <timmywillisn@gmail.com> | 2016-01-08 13:59:53 -0500 |
commit | 6ed6bc335f98352acfc7c07249bc4e936099aecf (patch) | |
tree | f7dd2cdcccc9dcbb8d8846b0ee2d97def8047839 | |
parent | b4e139cb7bdd890c0bf7d1c64f112e44100598a5 (diff) | |
download | jquery-6ed6bc335f98352acfc7c07249bc4e936099aecf.tar.gz jquery-6ed6bc335f98352acfc7c07249bc4e936099aecf.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 046424a78..b65699bac 100644 --- a/src/manipulation.js +++ b/src/manipulation.js @@ -307,6 +307,10 @@ jQuery.extend( { } ); jQuery.fn.extend( { + + // Keep domManip exposed until 3.0 (gh-2225) + domManip: domManip, + detach: function( selector ) { return remove( this, selector, true ); }, |