| 123456789101112131415161718192021 |
- define( [
- "../core"
- ], function( jQuery ) {
- "use strict";
- // Note: an element does not contain itself
- jQuery.contains = function( a, b ) {
- var bup = b && b.parentNode;
- return a === bup || !!( bup && bup.nodeType === 1 && (
- // Support: IE 9 - 11+
- // IE doesn't have `contains` on SVG.
- a.contains ?
- a.contains( bup ) :
- a.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16
- ) );
- };
- } );
|