Вход Регистрация
Файл: Main Website Files/assets/bower_components/jquery/src/manipulation.js
Строк: 603
<?php
define
([
    
"./core",
    
"./var/concat",
    
"./var/push",
    
"./core/access",
    
"./manipulation/var/rcheckableType",
    
"./manipulation/support",
    
"./data/var/data_priv",
    
"./data/var/data_user",

    
"./core/init",
    
"./data/accepts",
    
"./traversing",
    
"./selector",
    
"./event"
], function( jQueryconcatpushaccessrcheckableTypesupportdata_privdata_user ) {

var
    
rxhtmlTag = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([w:]+)[^>]*)/>/gi,
    
rtagName = /<([w:]+)/,
    
rhtml = /<|&#?w+;/,
    
rnoInnerhtml = /<(?:script|style|link)/i,
    
// checked="checked" or checked
    
rchecked = /checkeds*(?:[^=]|=s*.checked.)/i,
    
rscriptType = /^$|/(?:java|ecma)script/i,
    
rscriptTypeMasked = /^true/(.*)/,
    
rcleanScript = /^s*<!(?:[CDATA[|--)|(?:]]|--)>s*$/g,

    
// We have to close these tags to support XHTML (#13200)
    
wrapMap = {

        
// Support: IE9
        
option: [ 1"<select multiple='multiple'>""</select>" ],

        
thead: [ 1"<table>""</table>" ],
        
col: [ 2"<table><colgroup>""</colgroup></table>" ],
        
tr: [ 2"<table><tbody>""</tbody></table>" ],
        
td: [ 3"<table><tbody><tr>""</tr></tbody></table>" ],

        
_default: [ 0"""" ]
    };

// Support: IE9
wrapMap.optgroup wrapMap.option;

wrapMap.tbody wrapMap.tfoot wrapMap.colgroup wrapMap.caption wrapMap.thead;
wrapMap.th wrapMap.td;

// Support: 1.x compatibility
// Manipulating tables requires a tbody
function manipulationTargetelemcontent ) {
    return 
jQuery.nodeNameelem"table" ) &&
        
jQuery.nodeNamecontent.nodeType !== 11 content content.firstChild"tr" ) ?

        
elem.getElementsByTagName("tbody")[0] ||
            
elem.appendChildelem.ownerDocument.createElement("tbody") ) :
        
elem;
}

// Replace/restore the type attribute of script elements for safe DOM manipulation
function disableScriptelem ) {
    
elem.type = (elem.getAttribute("type") !== null) + "/" elem.type;
    return 
elem;
}
function 
restoreScriptelem ) {
    var 
match rscriptTypeMasked.execelem.type );

    if ( 
match ) {
        
elem.type match];
    } else {
        
elem.removeAttribute("type");
    }

    return 
elem;
}

// Mark scripts as having already been evaluated
function setGlobalEvalelemsrefElements ) {
    var 
0,
        
elems.length;

    for ( ; 
li++ ) {
        
data_priv.set(
            
elems], "globalEval", !refElements || data_priv.getrefElements], "globalEval" )
        );
    }
}

function 
cloneCopyEventsrcdest ) {
    var 
iltypepdataOldpdataCurudataOldudataCurevents;

    if ( 
dest.nodeType !== ) {
        return;
    }

    
// 1. Copy private data: events, handlers, etc.
    
if ( data_priv.hasDatasrc ) ) {
        
pdataOld data_priv.accesssrc );
        
pdataCur data_priv.setdestpdataOld );
        
events pdataOld.events;

        if ( 
events ) {
            
delete pdataCur.handle;
            
pdataCur.events = {};

            for ( 
type in events ) {
                for ( 
0eventstype ].lengthli++ ) {
                    
jQuery.event.adddesttypeeventstype ][ ] );
                }
            }
        }
    }

    
// 2. Copy user data
    
if ( data_user.hasDatasrc ) ) {
        
udataOld data_user.accesssrc );
        
udataCur jQuery.extend( {}, udataOld );

        
data_user.setdestudataCur );
    }
}

function 
getAllcontexttag ) {
    var 
ret context.getElementsByTagName context.getElementsByTagNametag || "*" ) :
            
context.querySelectorAll context.querySelectorAlltag || "*" ) :
            [];

    return 
tag === undefined || tag && jQuery.nodeNamecontexttag ) ?
        
jQuery.merge( [ context ], ret ) :
        
ret;
}

// Fix IE bugs, see support tests
function fixInputsrcdest ) {
    var 
nodeName dest.nodeName.toLowerCase();

    
// Fails to persist the checked state of a cloned checkbox or radio button.
    
if ( nodeName === "input" && rcheckableType.testsrc.type ) ) {
        
dest.checked src.checked;

    
// Fails to return the selected option to the default selected state when cloning options
    
} else if ( nodeName === "input" || nodeName === "textarea" ) {
        
dest.defaultValue src.defaultValue;
    }
}

jQuery.extend({
    clone: function( 
elemdataAndEventsdeepDataAndEvents ) {
        var 
ilsrcElementsdestElements,
            clone = 
elem.cloneNodetrue ),
            
inPage jQuery.containselem.ownerDocumentelem );

        
// Fix IE cloning issues
        
if ( !support.noCloneChecked && ( elem.nodeType === || elem.nodeType === 11 ) &&
                !
jQuery.isXMLDocelem ) ) {

            
// We eschew Sizzle here for performance reasons: http://jsperf.com/getall-vs-sizzle/2
            
destElements getAll( clone );
            
srcElements getAllelem );

            for ( 
0srcElements.lengthli++ ) {
                
fixInputsrcElements], destElements] );
            }
        }

        
// Copy the events from the original to the clone
        
if ( dataAndEvents ) {
            if ( 
deepDataAndEvents ) {
                
srcElements srcElements || getAllelem );
                
destElements destElements || getAll( clone );

                for ( 
0srcElements.lengthli++ ) {
                    
cloneCopyEventsrcElements], destElements] );
                }
            } else {
                
cloneCopyEventelem, clone );
            }
        }

        
// Preserve script evaluation history
        
destElements getAll( clone, "script" );
        if ( 
destElements.length ) {
            
setGlobalEvaldestElements, !inPage && getAllelem"script" ) );
        }

        
// Return the cloned set
        
return clone;
    },

    
buildFragment: function( elemscontextscriptsselection ) {
        var 
elemtmptagwrapcontainsj,
            
fragment context.createDocumentFragment(),
            
nodes = [],
            
0,
            
elems.length;

        for ( ; 
li++ ) {
            
elem elems];

            if ( 
elem || elem === ) {

                
// Add nodes directly
                
if ( jQuery.typeelem ) === "object" ) {
                    
// Support: QtWebKit, PhantomJS
                    // push.apply(_, arraylike) throws on ancient WebKit
                    
jQuery.mergenodeselem.nodeType ? [ elem ] : elem );

                
// Convert non-html into a text node
                
} else if ( !rhtml.testelem ) ) {
                    
nodes.pushcontext.createTextNodeelem ) );

                
// Convert html into DOM nodes
                
} else {
                    
tmp tmp || fragment.appendChildcontext.createElement("div") );

                    
// Deserialize a standard representation
                    
tag = ( rtagName.execelem ) || [ """" ] )[ ].toLowerCase();
                    
wrap wrapMaptag ] || wrapMap._default;
                    
tmp.innerHTML wrap] + elem.replacerxhtmlTag"<$1></$2>" ) + wrap];

                    
// Descend through wrappers to the right content
                    
wrap];
                    while ( 
j-- ) {
                        
tmp tmp.lastChild;
                    }

                    
// Support: QtWebKit, PhantomJS
                    // push.apply(_, arraylike) throws on ancient WebKit
                    
jQuery.mergenodestmp.childNodes );

                    
// Remember the top-level container
                    
tmp fragment.firstChild;

                    
// Ensure the created nodes are orphaned (#12392)
                    
tmp.textContent "";
                }
            }
        }

        
// Remove wrapper from fragment
        
fragment.textContent "";

        
0;
        while ( (
elem nodesi++ ]) ) {

            
// #4087 - If origin and destination elements are the same, and this is
            // that element, do not do anything
            
if ( selection && jQuery.inArrayelemselection ) !== -) {
                continue;
            }

            
contains jQuery.containselem.ownerDocumentelem );

            
// Append to fragment
            
tmp getAllfragment.appendChildelem ), "script" );

            
// Preserve script evaluation history
            
if ( contains ) {
                
setGlobalEvaltmp );
            }

            
// Capture executables
            
if ( scripts ) {
                
0;
                while ( (
elem tmpj++ ]) ) {
                    if ( 
rscriptType.testelem.type || "" ) ) {
                        
scripts.pushelem );
                    }
                }
            }
        }

        return 
fragment;
    },

    
cleanData: function( elems ) {
        var 
dataelemtypekey,
            
special jQuery.event.special,
            
0;

        for ( ; (
elem elems]) !== undefinedi++ ) {
            if ( 
jQuery.acceptDataelem ) ) {
                
key elemdata_priv.expando ];

                if ( 
key && (data data_priv.cachekey ]) ) {
                    if ( 
data.events ) {
                        for ( 
type in data.events ) {
                            if ( 
specialtype ] ) {
                                
jQuery.event.removeelemtype );

                            
// This is a shortcut to avoid jQuery.event.remove's overhead
                            
} else {
                                
jQuery.removeEventelemtypedata.handle );
                            }
                        }
                    }
                    if ( 
data_priv.cachekey ] ) {
                        
// Discard any remaining `private` data
                        
delete data_priv.cachekey ];
                    }
                }
            }
            
// Discard any remaining `user` data
            
delete data_user.cacheelemdata_user.expando ] ];
        }
    }
});

jQuery.fn.extend({
    
text: function( value ) {
        return 
accessthis, function( value ) {
            return 
value === undefined ?
                
jQuery.textthis ) :
                
this.empty().each(function() {
                    if ( 
this.nodeType === || this.nodeType === 11 || this.nodeType === ) {
                        
this.textContent value;
                    }
                });
        }, 
nullvaluearguments.length );
    },

    
append: function() {
        return 
this.domManiparguments, function( elem ) {
            if ( 
this.nodeType === || this.nodeType === 11 || this.nodeType === ) {
                var 
target manipulationTargetthiselem );
                
target.appendChildelem );
            }
        });
    },

    
prepend: function() {
        return 
this.domManiparguments, function( elem ) {
            if ( 
this.nodeType === || this.nodeType === 11 || this.nodeType === ) {
                var 
target manipulationTargetthiselem );
                
target.insertBeforeelemtarget.firstChild );
            }
        });
    },

    
before: function() {
        return 
this.domManiparguments, function( elem ) {
            if ( 
this.parentNode ) {
                
this.parentNode.insertBeforeelemthis );
            }
        });
    },

    
after: function() {
        return 
this.domManiparguments, function( elem ) {
            if ( 
this.parentNode ) {
                
this.parentNode.insertBeforeelemthis.nextSibling );
            }
        });
    },

    
remove: function( selectorkeepData /* Internal Use Only */ ) {
        var 
elem,
            
elems selector jQuery.filterselectorthis ) : this,
            
0;

        for ( ; (
elem elems[i]) != nulli++ ) {
            if ( !
keepData && elem.nodeType === ) {
                
jQuery.cleanDatagetAllelem ) );
            }

            if ( 
elem.parentNode ) {
                if ( 
keepData && jQuery.containselem.ownerDocumentelem ) ) {
                    
setGlobalEvalgetAllelem"script" ) );
                }
                
elem.parentNode.removeChildelem );
            }
        }

        return 
this;
    },

    empty: function() {
        var 
elem,
            
0;

        for ( ; (
elem this[i]) != nulli++ ) {
            if ( 
elem.nodeType === ) {

                
// Prevent memory leaks
                
jQuery.cleanDatagetAllelemfalse ) );

                
// Remove any remaining nodes
                
elem.textContent "";
            }
        }

        return 
this;
    },

    clone: function( 
dataAndEventsdeepDataAndEvents ) {
        
dataAndEvents dataAndEvents == null false dataAndEvents;
        
deepDataAndEvents deepDataAndEvents == null dataAndEvents deepDataAndEvents;

        return 
this.map(function() {
            return 
jQuery.clone( thisdataAndEventsdeepDataAndEvents );
        });
    },

    
html: function( value ) {
        return 
accessthis, function( value ) {
            var 
elem this] || {},
                
0,
                
this.length;

            if ( 
value === undefined && elem.nodeType === ) {
                return 
elem.innerHTML;
            }

            
// See if we can take a shortcut and just use innerHTML
            
if ( typeof value === "string" && !rnoInnerhtml.testvalue ) &&
                !
wrapMap[ ( rtagName.execvalue ) || [ """" ] )[ ].toLowerCase() ] ) {

                
value value.replacerxhtmlTag"<$1></$2>" );

                try {
                    for ( ; 
li++ ) {
                        
elem this] || {};

                        
// Remove element nodes and prevent memory leaks
                        
if ( elem.nodeType === ) {
                            
jQuery.cleanDatagetAllelemfalse ) );
                            
elem.innerHTML value;
                        }
                    }

                    
elem 0;

                
// If using innerHTML throws an exception, use the fallback method
                
} catch( ) {}
            }

            if ( 
elem ) {
                
this.empty().appendvalue );
            }
        }, 
nullvaluearguments.length );
    },

    
replaceWith: function() {
        var 
arg arguments];

        
// Make the changes, replacing each context element with the new content
        
this.domManiparguments, function( elem ) {
            
arg this.parentNode;

            
jQuery.cleanDatagetAllthis ) );

            if ( 
arg ) {
                
arg.replaceChildelemthis );
            }
        });

        
// Force removal if there was no new content (e.g., from empty arguments)
        
return arg && (arg.length || arg.nodeType) ? this this.remove();
    },

    
detach: function( selector ) {
        return 
this.removeselectortrue );
    },

    
domManip: function( argscallback ) {

        
// Flatten any nested arrays
        
args concat.apply( [], args );

        var 
fragmentfirstscriptshasScriptsnodedoc,
            
0,
            
this.length,
            
set this,
            
iNoClone 1,
            
value args],
            
isFunction jQuery.isFunctionvalue );

        
// We can't cloneNode fragments that contain checked, in WebKit
        
if ( isFunction ||
                ( 
&& typeof value === "string" &&
                    !
support.checkClone && rchecked.testvalue ) ) ) {
            return 
this.each(function( index ) {
                var 
self set.eqindex );
                if ( 
isFunction ) {
                    
args] = value.callthisindexself.html() );
                }
                
self.domManipargscallback );
            });
        }

        if ( 
) {
            
fragment jQuery.buildFragmentargsthis].ownerDocumentfalsethis );
            
first fragment.firstChild;

            if ( 
fragment.childNodes.length === ) {
                
fragment first;
            }

            if ( 
first ) {
                
scripts jQuery.mapgetAllfragment"script" ), disableScript );
                
hasScripts scripts.length;

                
// Use the original fragment for the last item instead of the first because it can end up
                // being emptied incorrectly in certain situations (#8070).
                
for ( ; li++ ) {
                    
node fragment;

                    if ( 
!== iNoClone ) {
                        
node jQuery.clone( nodetruetrue );

                        
// Keep references to cloned scripts for later restoration
                        
if ( hasScripts ) {
                            
// Support: QtWebKit
                            // jQuery.merge because push.apply(_, arraylike) throws
                            
jQuery.mergescriptsgetAllnode"script" ) );
                        }
                    }

                    
callback.callthis], node);
                }

                if ( 
hasScripts ) {
                    
doc scriptsscripts.length ].ownerDocument;

                    
// Reenable scripts
                    
jQuery.mapscriptsrestoreScript );

                    
// Evaluate executable scripts on first document insertion
                    
for ( 0hasScriptsi++ ) {
                        
node scripts];
                        if ( 
rscriptType.testnode.type || "" ) &&
                            !
data_priv.accessnode"globalEval" ) && jQuery.containsdocnode ) ) {

                            if ( 
node.src ) {
                                
// Optional AJAX dependency, but won't run scripts if not present
                                
if ( jQuery._evalUrl ) {
                                    
jQuery._evalUrlnode.src );
                                }
                            } else {
                                
jQuery.globalEvalnode.textContent.replacercleanScript"" ) );
                            }
                        }
                    }
                }
            }
        }

        return 
this;
    }
});

jQuery.each({
    
appendTo"append",
    
prependTo"prepend",
    
insertBefore"before",
    
insertAfter"after",
    
replaceAll"replaceWith"
}, function( nameoriginal ) {
    
jQuery.fn[ name ] = function( selector ) {
        var 
elems,
            
ret = [],
            
insert jQueryselector ),
            
last insert.length 1,
            
0;

        for ( ; 
<= lasti++ ) {
            
elems === last this this.clone( true );
            
jQueryinsert] )[ original ]( elems );

            
// Support: QtWebKit
            // .get() because push.apply(_, arraylike) throws
            
push.applyretelems.get() );
        }

        return 
this.pushStackret );
    };
});

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