Skip to content

Commit

Permalink
Lowercase props during static markup generation
Browse files Browse the repository at this point in the history
  • Loading branch information
nhunzaker committed Jul 20, 2016
1 parent b0be6f5 commit eda7235
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/renderers/dom/shared/DOMPropertyOperations.js
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ var DOMPropertyOperations = {
if (value == null) {
return '';
}
return name + '=' + quoteAttributeValueForBrowser(value);
return name.toLowerCase() + '=' + quoteAttributeValueForBrowser(value);
}
return null;
},
Expand Down

0 comments on commit eda7235

Please sign in to comment.