diff options
author | Michał Gołębiowski <m.goleb@gmail.com> | 2017-05-06 20:52:07 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-06 20:52:07 +0200 |
commit | bbf334282b5c27394fc507b1778cf21850be7b93 (patch) | |
tree | a9c2a84a9204e44eddaff5bf9caa764c8d1ee686 /src | |
parent | b3defccdc0ca93b49647e79df5e70fb933af679c (diff) | |
download | jquery-bbf334282b5c27394fc507b1778cf21850be7b93.tar.gz jquery-bbf334282b5c27394fc507b1778cf21850be7b93.zip |
CSS: Drop the float mapping from cssProps
Firefox 35 and newer support style.float directly.
Closes #3569
Diffstat (limited to 'src')
-rw-r--r-- | src/css.js | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/css.js b/src/css.js index 48a83404b..24c5c7327 100644 --- a/src/css.js +++ b/src/css.js @@ -201,9 +201,7 @@ jQuery.extend( { // Add in properties whose names you wish to fix before // setting or getting the value - cssProps: { - "float": "cssFloat" - }, + cssProps: {}, // Get and set the style property on a DOM Node style: function( elem, name, value, extra ) { |