mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-04-26 18:36:14 -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
|
@ -62,7 +62,7 @@
|
|||
|
||||
//get the padId out of the url
|
||||
var urlParts= document.location.pathname.split("/");
|
||||
padId = urlParts[urlParts.length-2];
|
||||
padId = decodeURIComponent(urlParts[urlParts.length-2]);
|
||||
|
||||
//set the title
|
||||
document.title = document.title + " | " + padId;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue