Вход Регистрация
Файл: Main Website Files/assets/bower_components/jquery/src/selector-native.js
Строк: 201
<?php
define
([
    
"./core"
], function( jQuery ) {

/*
 * Optional (non-Sizzle) selector module for custom builds.
 *
 * Note that this DOES NOT SUPPORT many documented jQuery
 * features in exchange for its smaller size:
 *
 * Attribute not equal selector
 * Positional selectors (:first; :eq(n); :odd; etc.)
 * Type selectors (:input; :checkbox; :button; etc.)
 * State-based selectors (:animated; :visible; :hidden; etc.)
 * :has(selector)
 * :not(complex selector)
 * custom selectors via Sizzle extensions
 * Leading combinators (e.g., $collection.find("> *"))
 * Reliable functionality on XML fragments
 * Requiring all parts of a selector to match elements under context
 *   (e.g., $div.find("div > *") now matches children of $div)
 * Matching against non-elements
 * Reliable sorting of disconnected nodes
 * querySelectorAll bug fixes (e.g., unreliable :focus on WebKit)
 *
 * If any of these are unacceptable tradeoffs, either use Sizzle or
 * customize this stub for the project's specific needs.
 */

var docElem window.document.documentElement,
    
selector_hasDuplicate,
    
matches docElem.matches ||
        
docElem.webkitMatchesSelector ||
        
docElem.mozMatchesSelector ||
        
docElem.oMatchesSelector ||
        
docElem.msMatchesSelector,
    
selector_sortOrder = function( a) {
        
// Flag for duplicate removal
        
if ( === ) {
            
selector_hasDuplicate true;
            return 
0;
        }

        var 
compare b.compareDocumentPosition && a.compareDocumentPosition && a.compareDocumentPosition);

        if ( 
compare ) {
            
// Disconnected nodes
            
if ( compare ) {

                
// Choose the first element that is related to our document
                
if ( === document || jQuery.contains(documenta) ) {
                    return -
1;
                }
                if ( 
=== document || jQuery.contains(documentb) ) {
                    return 
1;
                }

                
// Maintain original order
                
return 0;
            }

            return 
compare ? -1;
        }

        
// Not directly comparable, sort on existence of method
        
return a.compareDocumentPosition ? -1;
    };

jQuery.extend({
    
find: function( selectorcontextresultsseed ) {
        var 
elemnodeType,
            
0;

        
results results || [];
        
context context || document;

        
// Same basic safeguard as Sizzle
        
if ( !selector || typeof selector !== "string" ) {
            return 
results;
        }

        
// Early return if context is not an element or document
        
if ( (nodeType context.nodeType) !== && nodeType !== ) {
            return [];
        }

        if ( 
seed ) {
            while ( (
elem seed[i++]) ) {
                if ( 
jQuery.find.matchesSelector(elemselector) ) {
                    
results.pushelem );
                }
            }
        } else {
            
jQuery.mergeresultscontext.querySelectorAll(selector) );
        }

        return 
results;
    },
    
unique: function( results ) {
        var 
elem,
            
duplicates = [],
            
0,
            
0;

        
selector_hasDuplicate false;
        
results.sortselector_sortOrder );

        if ( 
selector_hasDuplicate ) {
            while ( (
elem results[i++]) ) {
                if ( 
elem === results] ) {
                    
duplicates.push);
                }
            }
            while ( 
j-- ) {
                
results.spliceduplicates], );
            }
        }

        return 
results;
    },
    
text: function( elem ) {
        var 
node,
            
ret "",
            
0,
            
nodeType elem.nodeType;

        if ( !
nodeType ) {
            
// If no nodeType, this is expected to be an array
            
while ( (node elem[i++]) ) {
                
// Do not traverse comment nodes
                
ret += jQuery.textnode );
            }
        } else if ( 
nodeType === || nodeType === || nodeType === 11 ) {
            
// Use textContent for elements
            
return elem.textContent;
        } else if ( 
nodeType === || nodeType === ) {
            return 
elem.nodeValue;
        }
        
// Do not include comment or processing instruction nodes

        
return ret;
    },
    
contains: function( a) {
        var 
adown a.nodeType === a.documentElement a,
            
bup && b.parentNode;
        return 
=== bup || !!( bup && bup.nodeType === && adown.contains(bup) );
    },
    
isXMLDoc: function( elem ) {
        return (
elem.ownerDocument || elem).documentElement.nodeName !== "HTML";
    },
    
expr: {
        
attrHandle: {},
        
match: {
            
bool: /^(?:checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped)$/i,
            
needsContext: /^[x20trnf]*[>+~]/
        }
    }
});

jQuery.extendjQuery.find, {
    
matches: function( exprelements ) {
        return 
jQuery.findexprnullnullelements );
    },
    
matchesSelector: function( elemexpr ) {
        return 
matches.callelemexpr );
    },
    
attr: function( elemname ) {
        return 
elem.getAttributename );
    }
});

});
?>
Онлайн: 1
Реклама