mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-07-04 05:55:47 -07:00
Rename Lobby.js to LobbyHandler.js to avoid filename conflict with lobby.js on case insensitive filesystems/APIs following 2cccd9825d/D2412, reported by Stan.
This was SVN commit r23173.
This commit is contained in:
parent
2cccd9825d
commit
27a949a1ea
2 changed files with 3 additions and 3 deletions
|
|
@ -1,7 +1,7 @@
|
|||
/**
|
||||
* This class owns the page handlers.
|
||||
*/
|
||||
class Lobby
|
||||
class LobbyHandler
|
||||
{
|
||||
constructor(dialog)
|
||||
{
|
||||
|
|
@ -26,7 +26,7 @@ var g_Nickname = Engine.LobbyGetNick();
|
|||
/**
|
||||
* This class organizes all components of this GUI page.
|
||||
*/
|
||||
var g_Lobby;
|
||||
var g_LobbyHandler;
|
||||
|
||||
/**
|
||||
* Called after the XmppConnection succeeded and when returning from a game.
|
||||
|
|
@ -34,7 +34,7 @@ var g_Lobby;
|
|||
function init(attribs)
|
||||
{
|
||||
if (g_Settings)
|
||||
g_Lobby = new Lobby(attribs && attribs.dialog);
|
||||
g_LobbyHandler = new LobbyHandler(attribs && attribs.dialog);
|
||||
else
|
||||
error("Could not load settings");
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue