Skip to content

Commit

Permalink
Merge pull request #4540 from scottburch/ie8-fix
Browse files Browse the repository at this point in the history
removed dangling comma that messes up loading in IE8
  • Loading branch information
zpao committed Aug 20, 2015
2 parents 0f963bb + 1da2b29 commit b38509c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/react/react.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/* eslint-disable comma-dangle */
'use strict';

var React = require('./lib/React');
Expand Down Expand Up @@ -39,7 +40,7 @@ if (process.env.NODE_ENV !== 'production') {
'react-dom/server',
React,
React.renderToStaticMarkup
),
)
};
// Export a wrapped object. We'll use assign and take advantage of the fact
// that this will override the original methods in React.
Expand Down

0 comments on commit b38509c

Please sign in to comment.