fix url escaping in timeslider

This commit is contained in:
Kai Hermann 2011-08-29 23:10:18 +02:00
parent 7e4bba0e31
commit cfc315a4a6

View file

@ -63,6 +63,7 @@
//get the padId out of the url
var urlParts= document.location.pathname.split("/");
padId = urlParts[urlParts.length-2];
padId = unescape(padId); // unescape neccesary due to Safari and Opera interpretation of spaces
//set the title
document.title = document.title + " | " + padId;