mirror of
https://github.com/overte-org/overte.git
synced 2025-08-07 05:09:23 +02:00
Add files via upload
This commit is contained in:
parent
ce11eb3920
commit
4e0f85fb92
1 changed files with 7 additions and 0 deletions
|
@ -3,6 +3,7 @@
|
||||||
// Created by Ryan Huffman on 19 Nov 2014
|
// Created by Ryan Huffman on 19 Nov 2014
|
||||||
// Copyright 2014 High Fidelity, Inc.
|
// Copyright 2014 High Fidelity, Inc.
|
||||||
// Copyright 2020 Vircadia contributors.
|
// Copyright 2020 Vircadia contributors.
|
||||||
|
// Copyright 2024 Overte e.V.
|
||||||
//
|
//
|
||||||
// Distributed under the Apache License, Version 2.0.
|
// Distributed under the Apache License, Version 2.0.
|
||||||
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
||||||
|
@ -273,6 +274,7 @@ let elEntityTable,
|
||||||
elAlignGridToSelection,
|
elAlignGridToSelection,
|
||||||
elAlignGridToAvatar,
|
elAlignGridToAvatar,
|
||||||
elBrokenURLReport,
|
elBrokenURLReport,
|
||||||
|
elRenderWithZonesManager,
|
||||||
elFilterTypeMultiselectBox,
|
elFilterTypeMultiselectBox,
|
||||||
elFilterTypeText,
|
elFilterTypeText,
|
||||||
elFilterTypeOptions,
|
elFilterTypeOptions,
|
||||||
|
@ -361,6 +363,7 @@ function loaded() {
|
||||||
elAlignGridToSelection = document.getElementById("alignGridToSelection");
|
elAlignGridToSelection = document.getElementById("alignGridToSelection");
|
||||||
elAlignGridToAvatar = document.getElementById("alignGridToAvatar");
|
elAlignGridToAvatar = document.getElementById("alignGridToAvatar");
|
||||||
elBrokenURLReport = document.getElementById("brokenURLReport");
|
elBrokenURLReport = document.getElementById("brokenURLReport");
|
||||||
|
elRenderWithZonesManager = document.getElementById("renderWithZonesManager");
|
||||||
elFilterTypeMultiselectBox = document.getElementById("filter-type-multiselect-box");
|
elFilterTypeMultiselectBox = document.getElementById("filter-type-multiselect-box");
|
||||||
elFilterTypeText = document.getElementById("filter-type-text");
|
elFilterTypeText = document.getElementById("filter-type-text");
|
||||||
elFilterTypeOptions = document.getElementById("filter-type-options");
|
elFilterTypeOptions = document.getElementById("filter-type-options");
|
||||||
|
@ -603,6 +606,10 @@ function loaded() {
|
||||||
EventBridge.emitWebEvent(JSON.stringify({ type: "brokenURLReport" }));
|
EventBridge.emitWebEvent(JSON.stringify({ type: "brokenURLReport" }));
|
||||||
closeAllEntityListMenu();
|
closeAllEntityListMenu();
|
||||||
};
|
};
|
||||||
|
elRenderWithZonesManager.onclick = function () {
|
||||||
|
EventBridge.emitWebEvent(JSON.stringify({ type: "renderWithZonesManager" }));
|
||||||
|
closeAllEntityListMenu();
|
||||||
|
};
|
||||||
elToggleSpaceMode.onclick = function() {
|
elToggleSpaceMode.onclick = function() {
|
||||||
EventBridge.emitWebEvent(JSON.stringify({ type: "toggleSpaceMode" }));
|
EventBridge.emitWebEvent(JSON.stringify({ type: "toggleSpaceMode" }));
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue