summaryrefslogtreecommitdiffstats
path: root/doc/html/_static/jquery.js
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-15 15:35:21 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-15 15:35:21 -0600
commitf39e1b176003642f9bd4e712cfd8acdf9665f81a (patch)
treed70e9a3ca823d4743df237da483202009e38fd2a /doc/html/_static/jquery.js
parentd3430de2c2e17b8e9d214f0c7168de38f7382af9 (diff)
downloadsip4-tqt-f39e1b176003642f9bd4e712cfd8acdf9665f81a.tar.gz
sip4-tqt-f39e1b176003642f9bd4e712cfd8acdf9665f81a.zip
Rename a number of old tq methods that are no longer tq specific
Diffstat (limited to 'doc/html/_static/jquery.js')
-rw-r--r--doc/html/_static/jquery.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/html/_static/jquery.js b/doc/html/_static/jquery.js
index 840ecfb..9263574 100644
--- a/doc/html/_static/jquery.js
+++ b/doc/html/_static/jquery.js
@@ -1039,7 +1039,7 @@ jQuery.extend({
// IE uses filters for opacity
if ( !jQuery.support.opacity && name == "opacity" ) {
if ( set ) {
- // IE has trouble with opacity if it does not have tqlayout
+ // IE has trouble with opacity if it does not have layout
// Force it by setting the zoom level
elem.zoom = 1;
@@ -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 )