mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-06-11 08:02:57 -04:00
Merge pull request #1063 from PhenomRetroShare/Fix_BlankPageWhenClearLobbyInWebInterface
Fix Blank Page When Clear Lobby in Web Interface
This commit is contained in:
commit
1a01181ef4
1 changed files with 6 additions and 4 deletions
|
@ -234,9 +234,11 @@ function lobby(lobbyid){
|
||||||
];
|
];
|
||||||
} else {
|
} else {
|
||||||
|
|
||||||
var el = document.getElementById("CharLobbyName");
|
var cln = document.getElementById("ChatLobbyName");
|
||||||
el.innerText = lobdt.name;
|
if (cln != null) {
|
||||||
|
cln.innerText = lobdt.name;
|
||||||
|
}
|
||||||
|
|
||||||
msg = m(".chat.bottom",[
|
msg = m(".chat.bottom",[
|
||||||
m("div","enter new message, Ctrl+Enter to submit:"),
|
m("div","enter new message, Ctrl+Enter to submit:"),
|
||||||
m("textarea",{
|
m("textarea",{
|
||||||
|
@ -388,7 +390,7 @@ module.exports = {
|
||||||
"h2",
|
"h2",
|
||||||
{
|
{
|
||||||
style:{margin:"0px"},
|
style:{margin:"0px"},
|
||||||
id:"CharLobbyName"
|
id:"ChatLobbyName"
|
||||||
},
|
},
|
||||||
"Lobby Name"
|
"Lobby Name"
|
||||||
)
|
)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue