Fix for #193 again
authorBrandon Aaron <brandon.aaron@gmail.com>
Sun, 15 Oct 2006 22:47:58 +0000 (22:47 +0000)
committerBrandon Aaron <brandon.aaron@gmail.com>
Sun, 15 Oct 2006 22:47:58 +0000 (22:47 +0000)
src/jquery/jquery.js

index 7ac7ee6..2ddb919 100644 (file)
@@ -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);