Fixed problem with %-encoded URIs

This commit is contained in:
rr- 2015-09-30 20:03:32 +02:00
parent 15739ac7cc
commit 105a564c7d

View file

@ -93,7 +93,7 @@ App.Router = function(_, jQuery, promise, util, appState, presenterManager) {
}
function dispatch() {
var url = document.location.hash;
var url = decodeURI(document.location.hash);
for (var i = 0; i < routes.length; i ++) {
var route = routes[i];
if (route.match(url)) {