mirror of
https://github.com/evennia/evennia.git
synced 2026-03-23 16:26:30 +01:00
Hack in default-modified layout type
This commit is contained in:
parent
bcaba4142b
commit
175ec7c6d8
1 changed files with 2 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue