From e28f9a6a538241593be484b6c9acdab266ddf00c Mon Sep 17 00:00:00 2001 From: Senad Uka Date: Wed, 18 Feb 2015 07:21:37 +0100 Subject: [PATCH] router with location, fixed bug with + and - on cart page --- front-ui/app/router.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/front-ui/app/router.js b/front-ui/app/router.js index 349e696..edee0fd 100644 --- a/front-ui/app/router.js +++ b/front-ui/app/router.js @@ -31,8 +31,8 @@ var routes = ( ); var router = Router.create({ - routes: routes - //,location: Router.HistoryLocation + routes: routes, + location: Router.HistoryLocation }); module.exports = router;