From adf3cacdf2c6426a7eb7ea5fc500082992f357aa Mon Sep 17 00:00:00 2001 From: Qube Date: Thu, 19 Jul 2018 20:12:57 +0700 Subject: Add evidence and mainmenu --- webAO/ui.js | 44 ++++++++++++++++++++++++++++---------------- 1 file changed, 28 insertions(+), 16 deletions(-) (limited to 'webAO/ui.js') diff --git a/webAO/ui.js b/webAO/ui.js index f5c3f3a..ca235ff 100644 --- a/webAO/ui.js +++ b/webAO/ui.js @@ -35,22 +35,34 @@ var config = { type: "column", content: [ { - type: "stack", - height: 60, - content: [ - { - type: "component", - title: "Server chat", - componentName: "template", - componentState: { id: "ooc" } - }, - { - type: "component", - title: "Log", - componentName: "template", - componentState: { id: "log" } - } - ] + type: "row", + height: 65, + content: [ + { + type: "stack", + content: [ + { + type: "component", + title: "Main", + componentName: "template", + componentState: { id: "mainmenu" } + }, + { + type: "component", + title: "Log", + componentName: "template", + componentState: { id: "log" } + } + ] + }, + { + type: "component", + title: "Server chat", + width: 30, + componentName: "template", + componentState: { id: "ooc" } + } + ] }, { type: "row", -- cgit