Skip to content

Commit

Permalink
Add semicolon for react-dom source files.
Browse files Browse the repository at this point in the history
  • Loading branch information
zpao committed Jan 20, 2016
1 parent af43d06 commit e9e7036
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/js/react-dom.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

// <script>
} else {
var g;
var g
if (typeof window !== "undefined") {
g = window;
} else if (typeof global !== "undefined") {
Expand Down
2 changes: 1 addition & 1 deletion vendor/react-dom-server.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

// <script>
} else {
var g
var g;
if (typeof window !== "undefined") {
g = window;
} else if (typeof global !== "undefined") {
Expand Down
2 changes: 1 addition & 1 deletion vendor/react-dom.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

// <script>
} else {
var g
var g;
if (typeof window !== "undefined") {
g = window;
} else if (typeof global !== "undefined") {
Expand Down

0 comments on commit e9e7036

Please sign in to comment.