%PDF- %PDF-
| Direktori : /www/loslex_o/demo/node_modules/jquery/src/selector/ |
| Current File : /www/loslex_o/demo/node_modules/jquery/src/selector/contains.js |
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
) );
};
} );