Fixed #135, thx to @Wikinaut

This commit is contained in:
Peter 'Pita' Martischka 2011-11-28 11:26:36 -08:00
parent e5d12f1d56
commit ec56ca75ad
2 changed files with 2 additions and 2 deletions

View file

@ -174,7 +174,7 @@ function handshake()
function sendClientReady(isReconnect)
{
var padId = document.location.pathname.substring(document.location.pathname.lastIndexOf("/") + 1);
padId = unescape(padId); // unescape neccesary due to Safari and Opera interpretation of spaces
padId = decodeURIComponent(padId); // unescape neccesary due to Safari and Opera interpretation of spaces
if(!isReconnect)
document.title = document.title + " | " + padId;