mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-04-21 16:06: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
|
@ -197,7 +197,7 @@ function handshake()
|
|||
padId = decodeURIComponent(padId); // unescape neccesary due to Safari and Opera interpretation of spaces
|
||||
|
||||
if(!isReconnect)
|
||||
document.title = document.title + " | " + padId.replace(/_+/g, ' ');
|
||||
document.title = padId.replace(/_+/g, ' ') + " | " + document.title;
|
||||
|
||||
var token = readCookie("token");
|
||||
if (token == null)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue