From: Brandon Aaron <brandon.aaron@gmail.com>
Date: Sun, 15 Oct 2006 22:47:58 +0000 (+0000)
Subject: Fix for #193 again
X-Git-Url: http://git.asbjorn.it/?a=commitdiff_plain;h=688c724b1f07b3e0ca7cb27b1d9f76b7b11959ce;p=jquery.git

Fix for #193 again
---

diff --git a/src/jquery/jquery.js b/src/jquery/jquery.js
index 7ac7ee6..2ddb919 100644
--- a/src/jquery/jquery.js
+++ b/src/jquery/jquery.js
@@ -1501,6 +1501,9 @@ jQuery.extend({
 
 		} else if (document.defaultView && document.defaultView.getComputedStyle) {
 
+			if (prop == "cssFloat" || prop == "styleFloat")
+				prop = "float";
+
 			prop = prop.replace(/([A-Z])/g,"-$1").toLowerCase();
 			var cur = document.defaultView.getComputedStyle(elem, null);