summaryrefslogtreecommitdiffstats
path: root/doc/html/_static
diff options
context:
space:
mode:
authorTimothy Pearson <[email protected]>2011-12-16 09:57:59 -0600
committerTimothy Pearson <[email protected]>2011-12-16 09:57:59 -0600
commitdacb50c634538366ed5e0d46ca3abf716cab6f37 (patch)
treef6d2b660fe344d3749b72492b9c609362cfb30c1 /doc/html/_static
parentf39e1b176003642f9bd4e712cfd8acdf9665f81a (diff)
downloadsip4-tqt-dacb50c634538366ed5e0d46ca3abf716cab6f37.tar.gz
sip4-tqt-dacb50c634538366ed5e0d46ca3abf716cab6f37.zip
Revert "Rename a number of old tq methods that are no longer tq specific"
This reverts commit f39e1b176003642f9bd4e712cfd8acdf9665f81a.
Diffstat (limited to 'doc/html/_static')
-rw-r--r--doc/html/_static/basic.css2
-rw-r--r--doc/html/_static/default.css2
-rw-r--r--doc/html/_static/jquery.js6
3 files changed, 5 insertions, 5 deletions
diff --git a/doc/html/_static/basic.css b/doc/html/_static/basic.css
index a04d654..7ebd311 100644
--- a/doc/html/_static/basic.css
+++ b/doc/html/_static/basic.css
@@ -3,7 +3,7 @@
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
*/
-/* -- main layout ----------------------------------------------------------- */
+/* -- main tqlayout ----------------------------------------------------------- */
div.clearer {
clear: both;
diff --git a/doc/html/_static/default.css b/doc/html/_static/default.css
index 42ed6ec..2363802 100644
--- a/doc/html/_static/default.css
+++ b/doc/html/_static/default.css
@@ -5,7 +5,7 @@
@import url("basic.css");
-/* -- page layout ----------------------------------------------------------- */
+/* -- page tqlayout ----------------------------------------------------------- */
body {
font-family: sans-serif;
diff --git a/doc/html/_static/jquery.js b/doc/html/_static/jquery.js
index 9263574..840ecfb 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 layout
+ // IE has trouble with opacity if it does not have tqlayout
// 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);},
- children: function(elem){return jQuery.sibling(elem.firstChild);},
+ tqchildren: 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).children().remove();
+ jQuery(this).tqchildren().remove();
// Remove any remaining nodes
while ( this.firstChild )