Skip to content
Permalink
Browse files
Remove oldIE styleFloat detect.
  • Loading branch information
dmethvin committed Jan 4, 2013
1 parent cef3450 commit 9a32f12
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
@@ -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
@@ -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,

0 comments on commit 9a32f12

Please sign in to comment.