mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-04-21 16:06:16 -04:00
Fixed #135, thx to @Wikinaut
This commit is contained in:
parent
e5d12f1d56
commit
ec56ca75ad
2 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue