diff --git a/static/favicon.ico b/static/favicon.ico
index a4777862b..2529c923f 100644
Binary files a/static/favicon.ico and b/static/favicon.ico differ
diff --git a/static/index.html b/static/index.html
index 3b3944cc2..fb53acb20 100644
--- a/static/index.html
+++ b/static/index.html
@@ -89,8 +89,18 @@
diff --git a/static/js/pad2.js b/static/js/pad2.js
index ea06d8cfd..9df57ae8f 100644
--- a/static/js/pad2.js
+++ b/static/js/pad2.js
@@ -172,7 +172,7 @@ function handshake()
socket.once('connect', function()
{
var padId = document.location.pathname.substring(document.location.pathname.lastIndexOf("/") + 1);
- padId = decodeURIComponent(padId);
+ padId = unescape(padId); // unescape neccesary due to Safari and Opera interpretation of spaces
document.title = document.title + " | " + padId;
diff --git a/static/timeslider.html b/static/timeslider.html
index 73bc5fcd1..4dbf8d939 100644
--- a/static/timeslider.html
+++ b/static/timeslider.html
@@ -62,7 +62,7 @@
//get the padId out of the url
var urlParts= document.location.pathname.split("/");
- padId = decodeURIComponent( urlParts[urlParts.length-2] );
+ padId = urlParts[urlParts.length-2];
//set the title
document.title = document.title + " | " + padId;