Remove oldIE styleFloat detect.

This commit is contained in:
Dave Methvin 2013-01-02 21:32:43 -05:00
parent cef3450228
commit 9a32f12bdf
2 changed files with 1 additions and 5 deletions

View File

@ -172,7 +172,7 @@ jQuery.extend({
// setting or getting the value
cssProps: {
// normalize float css property
"float": jQuery.support.cssFloat ? "cssFloat" : "styleFloat"
"float": "cssFloat"
},
// Get and set the style property on a DOM Node

View File

@ -21,10 +21,6 @@ jQuery.support = (function() {
a.style.cssText = "float:left;opacity:.5";
support = {
// Verify style float existence
// (IE uses styleFloat instead of cssFloat)
cssFloat: !!a.style.cssFloat,
// Check the default checkbox/radio value ("" on WebKit; "on" elsewhere)
checkOn: !!input.value,