From 76fe696118a57f9b662ec52838f159482a931502 Mon Sep 17 00:00:00 2001 From: Justin Tulloss Date: Mon, 6 Oct 2014 11:29:00 -0700 Subject: [PATCH] Removed trailing comma Trailing commas don't work in old versions of IE, and are not present in the rest of the codebase. Removed the one that remained, which allows Google Closure compiler to compiles this code. --- modules/components/Route.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/components/Route.js b/modules/components/Route.js index a73c3ec000..7e3eaeabea 100644 --- a/modules/components/Route.js +++ b/modules/components/Route.js @@ -72,7 +72,7 @@ var Route = React.createClass({ getUnreservedProps: function (props) { return withoutProperties(props, RESERVED_PROPS); - }, + } },