Skip to content

Commit 462f8ea

Browse files
committed
Merge pull request #2452 from Shahor/master
Trailing commas break old IE versions
2 parents a3509e5 + 6379342 commit 462f8ea

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/_js/jsx-compiler.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ var CompilerPlayground = React.createClass({
3737
</label>
3838
</div>
3939
);
40-
},
40+
}
4141
});
4242
React.render(
4343
<CompilerPlayground />,

src/core/ReactNativeComponent.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ function createInstanceForTag(tag, props, parentType) {
6262

6363
var ReactNativeComponent = {
6464
createInstanceForTag: createInstanceForTag,
65-
injection: ReactNativeComponentInjection,
65+
injection: ReactNativeComponentInjection
6666
};
6767

6868
module.exports = ReactNativeComponent;

0 commit comments

Comments
 (0)