diff options
Diffstat (limited to 'doc/html/_static/jquery.js')
-rw-r--r-- | doc/html/_static/jquery.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/html/_static/jquery.js b/doc/html/_static/jquery.js index 840ecfb..447a76c 100644 --- a/doc/html/_static/jquery.js +++ b/doc/html/_static/jquery.js @@ -1182,7 +1182,7 @@ jQuery.each({ nextAll: function(elem){return jQuery.dir(elem,"nextSibling");}, prevAll: function(elem){return jQuery.dir(elem,"previousSibling");}, siblings: function(elem){return jQuery.sibling(elem.parentNode.firstChild,elem);}, - tqchildren: function(elem){return jQuery.sibling(elem.firstChild);}, + children: function(elem){return jQuery.sibling(elem.firstChild);}, contents: function(elem){return jQuery.nodeName(elem,"iframe")?elem.contentDocument||elem.contentWindow.document:jQuery.makeArray(elem.childNodes);} }, function(name, fn){ jQuery.fn[ name ] = function( selector ) { @@ -1250,7 +1250,7 @@ jQuery.each({ empty: function() { // Remove element nodes and prevent memory leaks - jQuery(this).tqchildren().remove(); + jQuery(this).children().remove(); // Remove any remaining nodes while ( this.firstChild ) |