From bc931c31e4e689aba3cf1334a02e73ea47a9b2bd Mon Sep 17 00:00:00 2001 From: Jeremy Ashkenas Date: Mon, 18 Jun 2012 10:14:46 -0400 Subject: [PATCH] Fixing Routing. --- backbone.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backbone.js b/backbone.js index 1f538663..b08fa618 100644 --- a/backbone.js +++ b/backbone.js @@ -1000,7 +1000,7 @@ fragment = this.getHash(); } } - return fragment.replace(routeStripper, ''); + return decodeURIComponent(fragment.replace(routeStripper, '')); }, // Start the hash change handling, returning `true` if the current URL matches