From 213df4082184146d6c3c772951301172d22883d5 Mon Sep 17 00:00:00 2001 From: Michele Olivo Date: Tue, 15 Nov 2016 11:42:36 +0100 Subject: [PATCH] Fix for IE8 Parsing error IE8 Does not accept the trailing comma on Object definition. This fix let the IE8 parser to correctly parse the object instead of throwing an error for the trailing comma and exiting from the script. --- src/raven.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/raven.js b/src/raven.js index e33d2a0975ea..e192e34da6f1 100644 --- a/src/raven.js +++ b/src/raven.js @@ -128,7 +128,7 @@ Raven.prototype = { xhr: true, console: true, dom: true, - location: true, + location: true }; var autoBreadcrumbs = globalOptions.autoBreadcrumbs;