blob: 1dd798268fd59f50e8e9dd938002f75121ebeb6a (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
define( [
"../core",
"../selector" // Get jQuery.contains
], function( jQuery ) {
"use strict";
return function isAttached( obj ) {
return jQuery.contains( obj.ownerDocument, obj );
};
} );
|