mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-04-23 00:46:16 -04:00
Solves first part of #377 -- Swap order of title and pad name
This commit is contained in:
parent
9ed42ac801
commit
9d72ddfbc7
2 changed files with 2 additions and 2 deletions
|
@ -73,7 +73,7 @@ function init() {
|
|||
padId = decodeURIComponent(urlParts[urlParts.length-2]);
|
||||
|
||||
//set the title
|
||||
document.title = document.title + " | " + padId.replace(/_+/g, ' ');
|
||||
document.title = padId.replace(/_+/g, ' ') + " | " + document.title;
|
||||
|
||||
//ensure we have a token
|
||||
token = readCookie("token");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue