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 Aug 15, 2016
1 parent 5502295 commit 59800e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/renderers/dom/shared/DOMPropertyOperations.js
Expand Up @@ -104,7 +104,7 @@ var DOMPropertyOperations = {
if (value == null) {
return '';
}
return name + '=' + quoteAttributeValueForBrowser(value);
return name.toLowerCase() + '=' + quoteAttributeValueForBrowser(value);
}
return null;
},
Expand Down

0 comments on commit 59800e6

Please sign in to comment.