Fixes U4-4271 U7.1 Nightly build 16 YSOD when editing doc type

This commit is contained in:
perploug
2014-02-24 09:33:39 +01:00
parent a1b3345671
commit 8261a2b69b

View File

@@ -66,6 +66,10 @@ function valFormManager(serverValidationManager, $rootScope, $log, notifications
return;
}
var path = url.split("#")[1];
if(path.indexOf("%253") || path.indexOf("%252")){
path = decodeURIComponent(path);
}
var msg = {view: "confirmroutechange", args: {path: path, listener: locationEvent}};
notificationsService.add(msg);