From 1354d17270961fff662d40f90521223f8fd0d73b Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Tue, 14 Aug 2012 18:59:10 +0400 Subject: update dojo to 1.7.3 --- lib/dojo/NodeList-manipulate.js | 728 +--------------------------------------- 1 file changed, 2 insertions(+), 726 deletions(-) (limited to 'lib/dojo/NodeList-manipulate.js') diff --git a/lib/dojo/NodeList-manipulate.js b/lib/dojo/NodeList-manipulate.js index 8a4603843..d436a7fc1 100644 --- a/lib/dojo/NodeList-manipulate.js +++ b/lib/dojo/NodeList-manipulate.js @@ -4,729 +4,5 @@ see: http://dojotoolkit.org/license for details */ - -if(!dojo._hasResource["dojo.NodeList-manipulate"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code. -dojo._hasResource["dojo.NodeList-manipulate"] = true; -dojo.provide("dojo.NodeList-manipulate"); - - -/*===== -dojo["NodeList-manipulate"] = { - // summary: Adds a chainable methods to dojo.query() / Nodelist instances for manipulating HTML - // and DOM nodes and their properties. -}; -=====*/ - -//TODO: add a way to parse for widgets in the injected markup? - -(function(){ - function getText(/*DOMNode*/node){ - // summary: - // recursion method for text() to use. Gets text value for a node. - // description: - // Juse uses nodedValue so things like
tags do not end up in - // the text as any sort of line return. - var text = "", ch = node.childNodes; - for(var i = 0, n; n = ch[i]; i++){ - //Skip comments. - if(n.nodeType != 8){ - if(n.nodeType == 1){ - text += getText(n); - }else{ - text += n.nodeValue; - } - } - } - return text; - } - - function getWrapInsertion(/*DOMNode*/node){ - // summary: - // finds the innermost element to use for wrap insertion. - - //Make it easy, assume single nesting, no siblings. - while(node.childNodes[0] && node.childNodes[0].nodeType == 1){ - node = node.childNodes[0]; - } - return node; //DOMNode - } - - function makeWrapNode(/*DOMNode||String*/html, /*DOMNode*/refNode){ - // summary: - // convert HTML into nodes if it is not already a node. - if(typeof html == "string"){ - html = dojo._toDom(html, (refNode && refNode.ownerDocument)); - if(html.nodeType == 11){ - //DocumentFragment cannot handle cloneNode, so choose first child. - html = html.childNodes[0]; - } - }else if(html.nodeType == 1 && html.parentNode){ - //This element is already in the DOM clone it, but not its children. - html = html.cloneNode(false); - } - return html; /*DOMNode*/ - } - - dojo.extend(dojo.NodeList, { - _placeMultiple: function(/*String||Node||NodeList*/query, /*String*/position){ - // summary: - // private method for inserting queried nodes into all nodes in this NodeList - // at different positions. Differs from NodeList.place because it will clone - // the nodes in this NodeList if the query matches more than one element. - var nl2 = typeof query == "string" || query.nodeType ? dojo.query(query) : query; - var toAdd = []; - for(var i = 0; i < nl2.length; i++){ - //Go backwards in DOM to make dom insertions easier via insertBefore - var refNode = nl2[i]; - var length = this.length; - for(var j = length - 1, item; item = this[j]; j--){ - if(i > 0){ - //Need to clone the item. This also means - //it needs to be added to the current NodeList - //so it can also be the target of other chaining operations. - item = this._cloneNode(item); - toAdd.unshift(item); - } - if(j == length - 1){ - dojo.place(item, refNode, position); - }else{ - refNode.parentNode.insertBefore(item, refNode); - } - refNode = item; - } - } - - if(toAdd.length){ - //Add the toAdd items to the current NodeList. Build up list of args - //to pass to splice. - toAdd.unshift(0); - toAdd.unshift(this.length - 1); - Array.prototype.splice.apply(this, toAdd); - } - - return this; //dojo.NodeList - }, - - innerHTML: function(/*String?||DOMNode?|NodeList?*/value){ - // summary: - // allows setting the innerHTML of each node in the NodeList, - // if there is a value passed in, otherwise, reads the innerHTML value of the first node. - // description: - // This method is simpler than the dojo.NodeList.html() method provided by - // `dojo.NodeList-html`. This method just does proper innerHTML insertion of HTML fragments, - // and it allows for the innerHTML to be read for the first node in the node list. - // Since dojo.NodeList-html already took the "html" name, this method is called - // "innerHTML". However, if dojo.NodeList-html has not been loaded yet, this - // module will define an "html" method that can be used instead. Be careful if you - // are working in an environment where it is possible that dojo.NodeList-html could - // have been loaded, since its definition of "html" will take precedence. - // The nodes represented by the value argument will be cloned if more than one - // node is in this NodeList. The nodes in this NodeList are returned in the "set" - // usage of this method, not the HTML that was inserted. - // returns: - // if no value is passed, the result is String, the innerHTML of the first node. - // If a value is passed, the return is this dojo.NodeList - // example: - // assume a DOM created by this markup: - // |
- // |
- // This code inserts

Hello World

into both divs: - // | dojo.query("div").innerHTML("

Hello World

"); - // example: - // assume a DOM created by this markup: - // |

Hello Mars

- // |

Hello World

- // This code returns "

Hello Mars

": - // | var message = dojo.query("div").innerHTML(); - if(arguments.length){ - return this.addContent(value, "only"); //dojo.NodeList - }else{ - return this[0].innerHTML; //String - } - }, - - /*===== - html: function(value){ - // summary: - // see the information for "innerHTML". "html" is an alias for "innerHTML", but is - // only defined if dojo.NodeList-html has not been loaded. - // description: - // An alias for the "innerHTML" method, but only defined if there is not an existing - // "html" method on dojo.NodeList. Be careful if you are working in an environment - // where it is possible that dojo.NodeList-html could have been loaded, since its - // definition of "html" will take precedence. If you are not sure if dojo.NodeList-html - // could be loaded, use the "innerHTML" method. - // value: String?||DOMNode?||NodeList? - // optional. The HTML fragment to use as innerHTML. If value is not passed, then the innerHTML - // of the first element in this NodeList is returned. - // returns: - // if no value is passed, the result is String, the innerHTML of the first node. - // If a value is passed, the return is this dojo.NodeList - return; // dojo.NodeList - return; // String - }, - =====*/ - - text: function(/*String*/value){ - // summary: - // allows setting the text value of each node in the NodeList, - // if there is a value passed in, otherwise, returns the text value for all the - // nodes in the NodeList in one string. - // example: - // assume a DOM created by this markup: - // |
- // |
- // This code inserts "Hello World" into both divs: - // | dojo.query("div").text("Hello World"); - // example: - // assume a DOM created by this markup: - // |

Hello Mars today

- // |

Hello World

- // This code returns "Hello Mars today": - // | var message = dojo.query("div").text(); - // returns: - // if no value is passed, the result is String, the text value of the first node. - // If a value is passed, the return is this dojo.NodeList - if(arguments.length){ - for(var i = 0, node; node = this[i]; i++){ - if(node.nodeType == 1){ - dojo.empty(node); - node.appendChild(node.ownerDocument.createTextNode(value)); - } - } - return this; //dojo.NodeList - }else{ - var result = ""; - for(i = 0; node = this[i]; i++){ - result += getText(node); - } - return result; //String - } - }, - - val: function(/*String||Array*/value){ - // summary: - // If a value is passed, allows seting the value property of form elements in this - // NodeList, or properly selecting/checking the right value for radio/checkbox/select - // elements. If no value is passed, the value of the first node in this NodeList - // is returned. - // returns: - // if no value is passed, the result is String or an Array, for the value of the - // first node. - // If a value is passed, the return is this dojo.NodeList - // example: - // assume a DOM created by this markup: - // | - // | - // This code gets and sets the values for the form fields above: - // | dojo.query('[type="text"]').val(); //gets value foo - // | dojo.query('[type="text"]').val("bar"); //sets the input's value to "bar" - // | dojo.query("select").val() //gets array value ["red", "yellow"] - // | dojo.query("select").val(["blue", "yellow"]) //Sets the blue and yellow options to selected. - - //Special work for input elements. - if(arguments.length){ - var isArray = dojo.isArray(value); - for(var index = 0, node; node = this[index]; index++){ - var name = node.nodeName.toUpperCase(); - var type = node.type; - var newValue = isArray ? value[index] : value; - - if(name == "SELECT"){ - var opts = node.options; - for(var i = 0; i < opts.length; i++){ - var opt = opts[i]; - if(node.multiple){ - opt.selected = (dojo.indexOf(value, opt.value) != -1); - }else{ - opt.selected = (opt.value == newValue); - } - } - }else if(type == "checkbox" || type == "radio"){ - node.checked = (node.value == newValue); - }else{ - node.value = newValue; - } - } - return this; //dojo.NodeList - }else{ - //node already declared above. - node = this[0]; - if(!node || node.nodeType != 1){ - return undefined; - } - value = node.value || ""; - if(node.nodeName.toUpperCase() == "SELECT" && node.multiple){ - //A multivalued selectbox. Do the pain. - value = []; - //opts declared above in if block. - opts = node.options; - //i declared above in if block; - for(i = 0; i < opts.length; i++){ - //opt declared above in if block - opt = opts[i]; - if(opt.selected){ - value.push(opt.value); - } - } - if(!value.length){ - value = null; - } - } - return value; //String||Array - } - }, - - append: function(/*String||DOMNode||NodeList*/content){ - // summary: - // appends the content to every node in the NodeList. - // description: - // The content will be cloned if the length of NodeList - // is greater than 1. Only the DOM nodes are cloned, not - // any attached event handlers. - // returns: - // dojo.NodeList, the nodes currently in this NodeList will be returned, - // not the appended content. - // example: - // assume a DOM created by this markup: - // |

Hello Mars

- // |

Hello World

- // Running this code: - // | dojo.query("div").append("append"); - // Results in this DOM structure: - // |

Hello Mars

append
- // |

Hello World

append
- return this.addContent(content, "last"); //dojo.NodeList - }, - - appendTo: function(/*String*/query){ - // summary: - // appends nodes in this NodeList to the nodes matched by - // the query passed to appendTo. - // description: - // The nodes in this NodeList will be cloned if the query - // matches more than one element. Only the DOM nodes are cloned, not - // any attached event handlers. - // returns: - // dojo.NodeList, the nodes currently in this NodeList will be returned, - // not the matched nodes from the query. - // example: - // assume a DOM created by this markup: - // | append - // |

Hello Mars

- // |

Hello World

- // Running this code: - // | dojo.query("span").appendTo("p"); - // Results in this DOM structure: - // |

Hello Marsappend

- // |

Hello Worldappend

- return this._placeMultiple(query, "last"); //dojo.NodeList - }, - - prepend: function(/*String||DOMNode||NodeList*/content){ - // summary: - // prepends the content to every node in the NodeList. - // description: - // The content will be cloned if the length of NodeList - // is greater than 1. Only the DOM nodes are cloned, not - // any attached event handlers. - // returns: - // dojo.NodeList, the nodes currently in this NodeList will be returned, - // not the appended content. - // assume a DOM created by this markup: - // |

Hello Mars

- // |

Hello World

- // Running this code: - // | dojo.query("div").prepend("prepend"); - // Results in this DOM structure: - // |
prepend

Hello Mars

- // |
prepend

Hello World

- return this.addContent(content, "first"); //dojo.NodeList - }, - - prependTo: function(/*String*/query){ - // summary: - // prepends nodes in this NodeList to the nodes matched by - // the query passed to prependTo. - // description: - // The nodes in this NodeList will be cloned if the query - // matches more than one element. Only the DOM nodes are cloned, not - // any attached event handlers. - // returns: - // dojo.NodeList, the nodes currently in this NodeList will be returned, - // not the matched nodes from the query. - // example: - // assume a DOM created by this markup: - // | prepend - // |

Hello Mars

- // |

Hello World

- // Running this code: - // | dojo.query("span").prependTo("p"); - // Results in this DOM structure: - // |

prependHello Mars

- // |

prependHello World

- return this._placeMultiple(query, "first"); //dojo.NodeList - }, - - after: function(/*String||Element||NodeList*/content){ - // summary: - // Places the content after every node in the NodeList. - // description: - // The content will be cloned if the length of NodeList - // is greater than 1. Only the DOM nodes are cloned, not - // any attached event handlers. - // returns: - // dojo.NodeList, the nodes currently in this NodeList will be returned, - // not the appended content. - // example: - // assume a DOM created by this markup: - // |

Hello Mars

- // |

Hello World

- // Running this code: - // | dojo.query("div").after("after"); - // Results in this DOM structure: - // |

Hello Mars

after - // |

Hello World

after - return this.addContent(content, "after"); //dojo.NodeList - }, - - insertAfter: function(/*String*/query){ - // summary: - // The nodes in this NodeList will be placed after the nodes - // matched by the query passed to insertAfter. - // description: - // The nodes in this NodeList will be cloned if the query - // matches more than one element. Only the DOM nodes are cloned, not - // any attached event handlers. - // returns: - // dojo.NodeList, the nodes currently in this NodeList will be returned, - // not the matched nodes from the query. - // example: - // assume a DOM created by this markup: - // | after - // |

Hello Mars

- // |

Hello World

- // Running this code: - // | dojo.query("span").insertAfter("p"); - // Results in this DOM structure: - // |

Hello Mars

after - // |

Hello World

after - return this._placeMultiple(query, "after"); //dojo.NodeList - }, - - before: function(/*String||DOMNode||NodeList*/content){ - // summary: - // Places the content before every node in the NodeList. - // description: - // The content will be cloned if the length of NodeList - // is greater than 1. Only the DOM nodes are cloned, not - // any attached event handlers. - // returns: - // dojo.NodeList, the nodes currently in this NodeList will be returned, - // not the appended content. - // example: - // assume a DOM created by this markup: - // |

Hello Mars

- // |

Hello World

- // Running this code: - // | dojo.query("div").before("before"); - // Results in this DOM structure: - // | before

Hello Mars

- // | before

Hello World

- return this.addContent(content, "before"); //dojo.NodeList - }, - - insertBefore: function(/*String*/query){ - // summary: - // The nodes in this NodeList will be placed after the nodes - // matched by the query passed to insertAfter. - // description: - // The nodes in this NodeList will be cloned if the query - // matches more than one element. Only the DOM nodes are cloned, not - // any attached event handlers. - // returns: - // dojo.NodeList, the nodes currently in this NodeList will be returned, - // not the matched nodes from the query. - // example: - // assume a DOM created by this markup: - // | before - // |

Hello Mars

- // |

Hello World

- // Running this code: - // | dojo.query("span").insertBefore("p"); - // Results in this DOM structure: - // | before

Hello Mars

- // | before

Hello World

- return this._placeMultiple(query, "before"); //dojo.NodeList - }, - - /*===== - remove: function(simpleFilter){ - // summary: - // alias for dojo.NodeList's orphan method. Removes elements - // in this list that match the simple filter from their parents - // and returns them as a new NodeList. - // simpleFilter: String - // single-expression CSS rule. For example, ".thinger" or - // "#someId[attrName='value']" but not "div > span". In short, - // anything which does not invoke a descent to evaluate but - // can instead be used to test a single node is acceptable. - // returns: - // dojo.NodeList - return; // dojo.NodeList - }, - =====*/ - remove: dojo.NodeList.prototype.orphan, - - wrap: function(/*String||DOMNode*/html){ - // summary: - // Wrap each node in the NodeList with html passed to wrap. - // description: - // html will be cloned if the NodeList has more than one - // element. Only DOM nodes are cloned, not any attached - // event handlers. - // returns: - // dojo.NodeList, the nodes in the current NodeList will be returned, - // not the nodes from html argument. - // example: - // assume a DOM created by this markup: - // | one - // | two - // Running this code: - // | dojo.query("b").wrap("
"); - // Results in this DOM structure: - // |
one
- // |
two
- if(this[0]){ - html = makeWrapNode(html, this[0]); - - //Now cycle through the elements and do the insertion. - for(var i = 0, node; node = this[i]; i++){ - //Always clone because if html is used to hold one of - //the "this" nodes, then on the clone of html it will contain - //that "this" node, and that would be bad. - var clone = this._cloneNode(html); - if(node.parentNode){ - node.parentNode.replaceChild(clone, node); - } - //Find deepest element and insert old node in it. - var insertion = getWrapInsertion(clone); - insertion.appendChild(node); - } - } - return this; //dojo.NodeList - }, - - wrapAll: function(/*String||DOMNode*/html){ - // summary: - // Insert html where the first node in this NodeList lives, then place all - // nodes in this NodeList as the child of the html. - // returns: - // dojo.NodeList, the nodes in the current NodeList will be returned, - // not the nodes from html argument. - // example: - // assume a DOM created by this markup: - // |
- // |
Red One
- // |
Blue One
- // |
Red Two
- // |
Blue Two
- // |
- // Running this code: - // | dojo.query(".red").wrapAll('
'); - // Results in this DOM structure: - // |
- // |
- // |
Red One
- // |
Red Two
- // |
- // |
Blue One
- // |
Blue Two
- // |
- if(this[0]){ - html = makeWrapNode(html, this[0]); - - //Place the wrap HTML in place of the first node. - this[0].parentNode.replaceChild(html, this[0]); - - //Now cycle through the elements and move them inside - //the wrap. - var insertion = getWrapInsertion(html); - for(var i = 0, node; node = this[i]; i++){ - insertion.appendChild(node); - } - } - return this; //dojo.NodeList - }, - - wrapInner: function(/*String||DOMNode*/html){ - // summary: - // For each node in the NodeList, wrap all its children with the passed in html. - // description: - // html will be cloned if the NodeList has more than one - // element. Only DOM nodes are cloned, not any attached - // event handlers. - // returns: - // dojo.NodeList, the nodes in the current NodeList will be returned, - // not the nodes from html argument. - // example: - // assume a DOM created by this markup: - // |
- // |
Red One
- // |
Blue One
- // |
Red Two
- // |
Blue Two
- // |
- // Running this code: - // | dojo.query(".red").wrapInner(''); - // Results in this DOM structure: - // |
- // |
Red One
- // |
Blue One
- // |
Red Two
- // |
Blue Two
- // |
- if(this[0]){ - html = makeWrapNode(html, this[0]); - for(var i = 0; i < this.length; i++){ - //Always clone because if html is used to hold one of - //the "this" nodes, then on the clone of html it will contain - //that "this" node, and that would be bad. - var clone = this._cloneNode(html); - - //Need to convert the childNodes to an array since wrapAll modifies the - //DOM and can change the live childNodes NodeList. - this._wrap(dojo._toArray(this[i].childNodes), null, this._NodeListCtor).wrapAll(clone); - } - } - return this; //dojo.NodeList - }, - - replaceWith: function(/*String||DOMNode||NodeList*/content){ - // summary: - // Replaces each node in ths NodeList with the content passed to replaceWith. - // description: - // The content will be cloned if the length of NodeList - // is greater than 1. Only the DOM nodes are cloned, not - // any attached event handlers. - // returns: - // The nodes currently in this NodeList will be returned, not the replacing content. - // Note that the returned nodes have been removed from the DOM. - // example: - // assume a DOM created by this markup: - // |
- // |
Red One
- // |
Blue One
- // |
Red Two
- // |
Blue Two
- // |
- // Running this code: - // | dojo.query(".red").replaceWith('
Green
'); - // Results in this DOM structure: - // |
- // |
Green
- // |
Blue One
- // |
Green
- // |
Blue Two
- // |
- content = this._normalize(content, this[0]); - for(var i = 0, node; node = this[i]; i++){ - this._place(content, node, "before", i > 0); - node.parentNode.removeChild(node); - } - return this; //dojo.NodeList - }, - - replaceAll: function(/*String*/query){ - // summary: - // replaces nodes matched by the query passed to replaceAll with the nodes - // in this NodeList. - // description: - // The nodes in this NodeList will be cloned if the query - // matches more than one element. Only the DOM nodes are cloned, not - // any attached event handlers. - // returns: - // The nodes currently in this NodeList will be returned, not the matched nodes - // from the query. The nodes currently in this NodeLIst could have - // been cloned, so the returned NodeList will include the cloned nodes. - // example: - // assume a DOM created by this markup: - // |
- // |
___
- // |
Red One
- // |
___
- // |
Blue One
- // |
___
- // |
Red Two
- // |
___
- // |
Blue Two
- // |
- // Running this code: - // | dojo.query(".red").replaceAll(".blue"); - // Results in this DOM structure: - // |
- // |
___
- // |
___
- // |
Red One
- // |
Red Two
- // |
___
- // |
___
- // |
Red One
- // |
Red Two
- // |
- var nl = dojo.query(query); - var content = this._normalize(this, this[0]); - for(var i = 0, node; node = nl[i]; i++){ - this._place(content, node, "before", i > 0); - node.parentNode.removeChild(node); - } - return this; //dojo.NodeList - }, - - clone: function(){ - // summary: - // Clones all the nodes in this NodeList and returns them as a new NodeList. - // description: - // Only the DOM nodes are cloned, not any attached event handlers. - // returns: - // dojo.NodeList, a cloned set of the original nodes. - // example: - // assume a DOM created by this markup: - // |
- // |
Red One
- // |
Blue One
- // |
Red Two
- // |
Blue Two
- // |
- // Running this code: - // | dojo.query(".red").clone().appendTo(".container"); - // Results in this DOM structure: - // |
- // |
Red One
- // |
Blue One
- // |
Red Two
- // |
Blue Two
- // |
Red One
- // |
Red Two
- // |
- - //TODO: need option to clone events? - var ary = []; - for(var i = 0; i < this.length; i++){ - ary.push(this._cloneNode(this[i])); - } - return this._wrap(ary, this, this._NodeListCtor); //dojo.NodeList - } - }); - - //set up html method if one does not exist - if(!dojo.NodeList.prototype.html){ - dojo.NodeList.prototype.html = dojo.NodeList.prototype.innerHTML; - } -})(); - -} +//>>built +define("dojo/NodeList-manipulate",["./query","./_base/lang","./_base/array","./dom-construct","./NodeList-dom"],function(_1,_2,_3,_4){var _5=_1.NodeList;function _6(_7){var _8="",ch=_7.childNodes;for(var i=0,n;n=ch[i];i++){if(n.nodeType!=8){if(n.nodeType==1){_8+=_6(n);}else{_8+=n.nodeValue;}}}return _8;};function _9(_a){while(_a.childNodes[0]&&_a.childNodes[0].nodeType==1){_a=_a.childNodes[0];}return _a;};function _b(_c,_d){if(typeof _c=="string"){_c=_4.toDom(_c,(_d&&_d.ownerDocument));if(_c.nodeType==11){_c=_c.childNodes[0];}}else{if(_c.nodeType==1&&_c.parentNode){_c=_c.cloneNode(false);}}return _c;};_2.extend(_5,{_placeMultiple:function(_e,_f){var nl2=typeof _e=="string"||_e.nodeType?_1(_e):_e;var _10=[];for(var i=0;i0){_13=this._cloneNode(_13);_10.unshift(_13);}if(j==_12-1){_4.place(_13,_11,_f);}else{_11.parentNode.insertBefore(_13,_11);}_11=_13;}}if(_10.length){_10.unshift(0);_10.unshift(this.length-1);Array.prototype.splice.apply(this,_10);}return this;},innerHTML:function(_14){if(arguments.length){return this.addContent(_14,"only");}else{return this[0].innerHTML;}},text:function(_15){if(arguments.length){for(var i=0,_16;_16=this[i];i++){if(_16.nodeType==1){_4.empty(_16);_16.appendChild(_16.ownerDocument.createTextNode(_15));}}return this;}else{var _17="";for(i=0;_16=this[i];i++){_17+=_6(_16);}return _17;}},val:function(_18){if(arguments.length){var _19=_2.isArray(_18);for(var _1a=0,_1b;_1b=this[_1a];_1a++){var _1c=_1b.nodeName.toUpperCase();var _1d=_1b.type;var _1e=_19?_18[_1a]:_18;if(_1c=="SELECT"){var _1f=_1b.options;for(var i=0;i<_1f.length;i++){var opt=_1f[i];if(_1b.multiple){opt.selected=(_3.indexOf(_18,opt.value)!=-1);}else{opt.selected=(opt.value==_1e);}}}else{if(_1d=="checkbox"||_1d=="radio"){_1b.checked=(_1b.value==_1e);}else{_1b.value=_1e;}}}return this;}else{_1b=this[0];if(!_1b||_1b.nodeType!=1){return undefined;}_18=_1b.value||"";if(_1b.nodeName.toUpperCase()=="SELECT"&&_1b.multiple){_18=[];_1f=_1b.options;for(i=0;i<_1f.length;i++){opt=_1f[i];if(opt.selected){_18.push(opt.value);}}if(!_18.length){_18=null;}}return _18;}},append:function(_20){return this.addContent(_20,"last");},appendTo:function(_21){return this._placeMultiple(_21,"last");},prepend:function(_22){return this.addContent(_22,"first");},prependTo:function(_23){return this._placeMultiple(_23,"first");},after:function(_24){return this.addContent(_24,"after");},insertAfter:function(_25){return this._placeMultiple(_25,"after");},before:function(_26){return this.addContent(_26,"before");},insertBefore:function(_27){return this._placeMultiple(_27,"before");},remove:_5.prototype.orphan,wrap:function(_28){if(this[0]){_28=_b(_28,this[0]);for(var i=0,_29;_29=this[i];i++){var _2a=this._cloneNode(_28);if(_29.parentNode){_29.parentNode.replaceChild(_2a,_29);}var _2b=_9(_2a);_2b.appendChild(_29);}}return this;},wrapAll:function(_2c){if(this[0]){_2c=_b(_2c,this[0]);this[0].parentNode.replaceChild(_2c,this[0]);var _2d=_9(_2c);for(var i=0,_2e;_2e=this[i];i++){_2d.appendChild(_2e);}}return this;},wrapInner:function(_2f){if(this[0]){_2f=_b(_2f,this[0]);for(var i=0;i0);_32.parentNode.removeChild(_32);}return this;},replaceAll:function(_33){var nl=_1(_33);var _34=this._normalize(this,this[0]);for(var i=0,_35;_35=nl[i];i++){this._place(_34,_35,"before",i>0);_35.parentNode.removeChild(_35);}return this;},clone:function(){var ary=[];for(var i=0;i