From: Brandon Aaron Date: Sun, 15 Oct 2006 22:47:58 +0000 (+0000) Subject: Fix for #193 again X-Git-Url: http://git.asbjorn.biz/?a=commitdiff_plain;h=688c724b1f07b3e0ca7cb27b1d9f76b7b11959ce;hp=2e23d0168e6d820a0264792ef256fb33ec9bb700;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);