From 62ae0eff503e7d1e99873db13efe49f634d176d0 Mon Sep 17 00:00:00 2001
From: John Resig <jeresig@gmail.com>
Date: Sat, 30 Jun 2007 13:47:40 +0000
Subject: [PATCH] Simplified some of the IE styleFloat/cssFloat code.

---
 src/jquery/jquery.js |   10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

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",
-- 
1.7.10.4