Skip to content

Commit

Permalink
Eliminate some white space. Add comment about order property.
Browse files Browse the repository at this point in the history
  • Loading branch information
nhunzaker committed Aug 9, 2016
1 parent 4f467ac commit f182a2f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -747,7 +747,6 @@ describe('ReactDOMInput', function() {
}
var log = [];
var originalCreateElement = document.createElement;

spyOn(document, 'createElement').and.callFake(function(type) {
var el = originalCreateElement.apply(this, arguments);
if (type === 'input') {
Expand Down
4 changes: 4 additions & 0 deletions src/renderers/dom/shared/DOMProperty.js
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,10 @@ var DOMProperty = {
*/
properties: {},

/**
* Some elements need specific attribute insertion order. This property
* stores that configuration.
*/
order: {},

/**
Expand Down

0 comments on commit f182a2f

Please sign in to comment.