From 175ec7c6d86985cd90f1fd7b324c3e7c7c9a260e Mon Sep 17 00:00:00 2001 From: Brenden Tuck Date: Mon, 12 Oct 2020 15:36:47 -0400 Subject: [PATCH] Hack in default-modified layout type --- .../web/webclient/static/webclient/js/plugins/goldenlayout.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/evennia/web/webclient/static/webclient/js/plugins/goldenlayout.js b/evennia/web/webclient/static/webclient/js/plugins/goldenlayout.js index e141b47b96..0d80f33595 100644 --- a/evennia/web/webclient/static/webclient/js/plugins/goldenlayout.js +++ b/evennia/web/webclient/static/webclient/js/plugins/goldenlayout.js @@ -8,7 +8,7 @@ let goldenlayout = (function () { var myLayout; // The actively used GoldenLayout API object. var evenniaGoldenLayouts = {}; // key/value storage Object for each selectable layout. - var activeLayoutName = "default"; // The object key of the active evenniaGoldenLayout + var activeLayoutName = "default-modified"; // The object key of the active evenniaGoldenLayout var knownTypes = ["all", "untagged", "testing"]; var untagged = []; @@ -689,6 +689,7 @@ let goldenlayout = (function () { // pre-load the evenniaGoldenLayouts with the hard-coded default Object.assign( evenniaGoldenLayouts, { "default" : window.goldenlayout_config } ); + Object.assign( evenniaGoldenLayouts, { "default-modified" : window.goldenlayout_config } ); if( activeName !== null ) { activeLayoutName = activeName;