aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimmy Willison <timmywillisn@gmail.com>2016-01-08 13:59:53 -0500
committerTimmy Willison <timmywillisn@gmail.com>2016-01-08 13:59:53 -0500
commit6ed6bc335f98352acfc7c07249bc4e936099aecf (patch)
treef7dd2cdcccc9dcbb8d8846b0ee2d97def8047839
parentb4e139cb7bdd890c0bf7d1c64f112e44100598a5 (diff)
downloadjquery-6ed6bc335f98352acfc7c07249bc4e936099aecf.tar.gz
jquery-6ed6bc335f98352acfc7c07249bc4e936099aecf.zip
Manipulation: re-expose domManip until 3.0
Fixes gh-2225
-rw-r--r--src/manipulation.js4
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 );
},