Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Simplified some of the IE styleFloat/cssFloat code.
  • Loading branch information
jeresig committed Jun 30, 2007
1 parent 21d59e8 commit 62ae0ef
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions src/jquery/jquery.js
Expand Up @@ -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];
Expand Down Expand Up @@ -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",
Expand Down

0 comments on commit 62ae0ef

Please sign in to comment.