Skip to content

Commit 6376aac

Browse files
committed
Fix "Parse error. IE8 (and below) will parse trailing commas in array and object literals incorrectly."
1 parent 5f2f625 commit 6376aac

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)