aboutsummaryrefslogtreecommitdiffstats
path: root/src/support.js
diff options
context:
space:
mode:
authorBrandon Aaron <brandon.aaron@gmail.com>2009-03-23 01:55:17 +0000
committerBrandon Aaron <brandon.aaron@gmail.com>2009-03-23 01:55:17 +0000
commitf8ef75eb9124ce924be5fb521c783efd5c996e33 (patch)
treee249197bfb42c77b26e068954cbcf70b9c5bb91a /src/support.js
parente06da1724cf05a83e14efa8b854348ac4e4a599a (diff)
downloadjquery-f8ef75eb9124ce924be5fb521c783efd5c996e33.tar.gz
jquery-f8ef75eb9124ce924be5fb521c783efd5c996e33.zip
remove trailing spaces
Diffstat (limited to 'src/support.js')
-rw-r--r--src/support.js16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/support.js b/src/support.js
index f4b706ba9..04c3a2a69 100644
--- a/src/support.js
+++ b/src/support.js
@@ -21,27 +21,27 @@
jQuery.support = {
// IE strips leading whitespace when .innerHTML is used
leadingWhitespace: div.firstChild.nodeType == 3,
-
+
// Make sure that tbody elements aren't automatically inserted
// IE will insert them into empty tables
tbody: !div.getElementsByTagName("tbody").length,
-
+
// Make sure that link elements get serialized correctly by innerHTML
// This requires a wrapper element in IE
htmlSerialize: !!div.getElementsByTagName("link").length,
-
+
// Get the style information from getAttribute
// (IE uses .cssText insted)
style: /red/.test( a.getAttribute("style") ),
-
+
// Make sure that URLs aren't manipulated
// (IE normalizes it by default)
hrefNormalized: a.getAttribute("href") === "/a",
-
+
// Make sure that element opacity exists
// (IE uses filter instead)
opacity: a.style.opacity === "0.5",
-
+
// Verify style float existence
// (IE uses styleFloat instead of cssFloat)
cssFloat: !!a.style.cssFloat,
@@ -51,14 +51,14 @@
noCloneEvent: true,
boxModel: null
};
-
+
script.type = "text/javascript";
try {
script.appendChild( document.createTextNode( "window." + id + "=1;" ) );
} catch(e){}
root.insertBefore( script, root.firstChild );
-
+
// Make sure that the execution of code works by injecting a script
// tag with appendChild/createTextNode
// (IE doesn't support this, fails, and uses .text instead)