From 1e55e05fc9ca04437abf7823e3ab50c131529bf0 Mon Sep 17 00:00:00 2001 From: Qube Date: Fri, 20 Jul 2018 20:57:37 +0700 Subject: Add witness testinomy, cross examination, call mod function + Fix animation sequence more reliable (using gify API to calculate animation duration) + Resign interface to gain more space. --- webAO/ui.js | 46 +++++++++++----------------------------------- 1 file changed, 11 insertions(+), 35 deletions(-) (limited to 'webAO/ui.js') diff --git a/webAO/ui.js b/webAO/ui.js index ca235ff..56e0dcd 100644 --- a/webAO/ui.js +++ b/webAO/ui.js @@ -21,14 +21,7 @@ var config = { componentName: "template", title: "Game", componentState: { id: "client_wrapper" } - }, - { - type: "component", - title: "Miscellaneous", - height: 5, - componentName: "template", - componentState: { id: "misc" } - }, + } ] }, { @@ -56,40 +49,23 @@ var config = { ] }, { - type: "component", - title: "Server chat", + type: "component", + title: "Music", width: 30, - componentName: "template", - componentState: { id: "ooc" } - } + componentName: "template", + componentState: { id: "music" } + } ] }, { type: "row", content: [ { - type: "component", - title: "Music", - componentName: "template", - componentState: { id: "music" } - }, - { - type: "stack", - content: [ - { - type: "component", - title: "Settings", - componentName: "template", - componentState: { id: "client_settings" } - }, - { - type: "component", - title: "About", - componentName: "template", - componentState: { id: "about" } - } - ] - } + type: "component", + title: "Server chat", + componentName: "template", + componentState: { id: "ooc" } + } ] } ] -- cgit