Skip to content
This repository was archived by the owner on Dec 5, 2019. It is now read-only.

Commit 3f0f930

Browse files
committed
Merge pull request #2 from thomasloh/jshint-error-free
append missing semicolons (for library to work well with jshint-loader)
2 parents 91c0f4b + 518c629 commit 3f0f930

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ module.exports.pitch = function(remainingRequest) {
1818
' return ret;',
1919
' },',
2020
' _renderUnavailable: function() {',
21-
' return new ReactTextComponent("")',
21+
' return new ReactTextComponent("");',
2222
' }',
2323
'};',
2424
'var mixinReactProxy = require(' + JSON.stringify(require.resolve("./mixinReactProxy")) + ');',

unavailable.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ module.exports.pitch = function(remainingRequest) {
99
'var desc = {',
1010
' loadComponent: function(callback) {},',
1111
' _renderUnavailable: function() {',
12-
' return new ReactTextComponent("")',
12+
' return new ReactTextComponent("");',
1313
' }',
1414
'};',
1515
'var mixinReactProxy = require(' + JSON.stringify(require.resolve("./mixinReactProxy")) + ');',

0 commit comments

Comments
 (0)