From 688c724b1f07b3e0ca7cb27b1d9f76b7b11959ce Mon Sep 17 00:00:00 2001 From: Brandon Aaron Date: Sun, 15 Oct 2006 22:47:58 +0000 Subject: [PATCH] Fix for #193 again --- src/jquery/jquery.js | 3 +++ 1 file changed, 3 insertions(+) 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); -- 1.7.10.4