From: John Resig Date: Sat, 30 Jun 2007 13:47:40 +0000 (+0000) Subject: Simplified some of the IE styleFloat/cssFloat code. X-Git-Url: http://git.asbjorn.biz/?a=commitdiff_plain;ds=sidebyside;h=62ae0eff503e7d1e99873db13efe49f634d176d0;p=jquery.git Simplified some of the IE styleFloat/cssFloat code. --- diff --git a/src/jquery/jquery.js b/src/jquery/jquery.js index 5940df3..ef728f0 100644 --- a/src/jquery/jquery.js +++ b/src/jquery/jquery.js @@ -1443,7 +1443,7 @@ jQuery.extend({ } if (prop.match(/float/i)) - prop = jQuery.browser.msie ? "styleFloat" : "cssFloat"; + prop = jQuery.styleFloat; if (!force && elem.style[prop]) ret = elem.style[prop]; @@ -1820,12 +1820,14 @@ new function() { // Check to see if the W3C box model is being used jQuery.boxModel = !jQuery.browser.msie || document.compatMode == "CSS1Compat"; + jQuery.styleFloat = jQuery.browser.msie ? "styleFloat" : "cssFloat", + jQuery.props = { "for": "htmlFor", "class": "className", - "float": jQuery.browser.msie ? "styleFloat" : "cssFloat", - cssFloat: jQuery.browser.msie ? "styleFloat" : "cssFloat", - styleFloat: jQuery.browser.msie ? "styleFloat" : "cssFloat", + "float": jQuery.styleFloat, + cssFloat: jQuery.styleFloat, + styleFloat: jQuery.styleFloat, innerHTML: "innerHTML", className: "className", value: "value",