From cfc315a4a63f0e83f360c96a7ad9be39c5bb60fd Mon Sep 17 00:00:00 2001 From: Kai Hermann Date: Mon, 29 Aug 2011 23:10:18 +0200 Subject: [PATCH] fix url escaping in timeslider --- static/timeslider.html | 1 + 1 file changed, 1 insertion(+) diff --git a/static/timeslider.html b/static/timeslider.html index 4dbf8d939..7fb4bfae7 100644 --- a/static/timeslider.html +++ b/static/timeslider.html @@ -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;