1
0
forked from mirrors/0ad
Files
0ad/binaries/data/mods/public/gui/reference/structree/structree.js
T
bb 3ff65b451f Fix jsDocs object => Object
This was SVN commit r23991.
2020-08-24 11:01:25 +00:00

15 lines
299 B
JavaScript

/**
* Initialize the page.
*
* @param {Object} data - Parameters passed from the code that calls this page into existence.
*/
function init(data = {})
{
g_Page = new StructreePage(data);
if (data.civ)
g_Page.civSelection.selectCiv(data.civ);
else
g_Page.civSelection.selectFirstCiv();
}