mirror of
https://github.com/overte-org/overte.git
synced 2025-08-06 19:59:28 +02:00
Fix image URLs in controlPanel.js.
This commit is contained in:
parent
7973c2d469
commit
055c9dc59b
2 changed files with 8 additions and 4 deletions
|
@ -17,10 +17,10 @@ Script.include([
|
||||||
]);
|
]);
|
||||||
|
|
||||||
var BG_IMAGE_URL = HIFI_PUBLIC_BUCKET + "images/card-bg.svg";
|
var BG_IMAGE_URL = HIFI_PUBLIC_BUCKET + "images/card-bg.svg";
|
||||||
var CLOSE_IMAGE_URL = HIFI_PUBLIC_BUCKET + "images/close.svg";
|
var CLOSE_IMAGE_URL = HIFI_PUBLIC_BUCKET + "images/tools/close.svg";
|
||||||
var MIC_IMAGE_URL = HIFI_PUBLIC_BUCKET + "images/mic-toggle.svg";
|
var MIC_IMAGE_URL = HIFI_PUBLIC_BUCKET + "images/tools/mic-toggle.svg";
|
||||||
var FACE_IMAGE_URL = HIFI_PUBLIC_BUCKET + "images/face-toggle.svg";
|
var FACE_IMAGE_URL = HIFI_PUBLIC_BUCKET + "images/tools/face-toggle.svg";
|
||||||
var ADDRESS_BAR_IMAGE_URL = HIFI_PUBLIC_BUCKET + "images/address-bar-toggle.svg";
|
var ADDRESS_BAR_IMAGE_URL = HIFI_PUBLIC_BUCKET + "images/tools/address-bar-toggle.svg";
|
||||||
|
|
||||||
var panel = new FloatingUIPanel({
|
var panel = new FloatingUIPanel({
|
||||||
anchorPosition: {
|
anchorPosition: {
|
||||||
|
|
|
@ -24,6 +24,10 @@
|
||||||
//
|
//
|
||||||
// See more on usage below.
|
// See more on usage below.
|
||||||
//
|
//
|
||||||
|
// Note that including this file will delete Overlays from the global scope. All the
|
||||||
|
// functionality of Overlays is represented here, just better. If you try to use Overlays in
|
||||||
|
// tandem, there may be performance problems or nasty surprises.
|
||||||
|
//
|
||||||
// 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
|
||||||
//
|
//
|
||||||
|
|
Loading…
Reference in a new issue