mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-01-19 14:13:34 +01:00
return text instead of html
This commit is contained in:
parent
383439629a
commit
5d12be940c
1 changed files with 2 additions and 2 deletions
|
@ -655,8 +655,8 @@ var pad = {
|
|||
{
|
||||
alertBar.displayMessage(function(abar)
|
||||
{
|
||||
abar.find("#servermsgdate").html(" (" + padutils.simpleDateTime(new Date) + ")");
|
||||
abar.find("#servermsgtext").html(m.text);
|
||||
abar.find("#servermsgdate").text(" (" + padutils.simpleDateTime(new Date) + ")");
|
||||
abar.find("#servermsgtext").text(m.text);
|
||||
});
|
||||
}
|
||||
if (m.js)
|
||||
|
|
Loading…
Reference in a new issue