Skip to content

Commit

Permalink
Merge pull request #6133 from stevenvachon/patch-1
Browse files Browse the repository at this point in the history
support standard "cssFloat" css property
  • Loading branch information
zpao committed Feb 28, 2016
2 parents 5bb4303 + f68325f commit adc9104
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/renderers/dom/shared/CSSPropertyOperations.js
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ var CSSPropertyOperations = {
styles[styleName],
component
);
if (styleName === 'float') {
if (styleName === 'float' || styleName === 'cssFloat') {
styleName = styleFloatAccessor;
}
if (styleValue) {
Expand Down

0 comments on commit adc9104

Please sign in to comment.