Skip to content

Commit a388a28

Browse files
authored
Merge pull request #313 from BoShurik/fix-trailing-commas
Fix trailing commas in array and object
2 parents 5f2f625 + 6376aac commit a388a28

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Resources/js/router.template.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
// Browser globals (root is window)
1313
root.Routing = routing.Routing;
1414
root.fos = {
15-
Router: routing.Router,
15+
Router: routing.Router
1616
};
1717
}
1818
}(this, function () {

Resources/public/js/router.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
// Browser globals (root is window)
1313
root.Routing = routing.Routing;
1414
root.fos = {
15-
Router: routing.Router,
15+
Router: routing.Router
1616
};
1717
}
1818
}(this, function () {

0 commit comments

Comments
 (0)