mirror of
https://github.com/overte-org/overte.git
synced 2025-04-26 19:37:00 +02:00
16 lines
482 B
JavaScript
16 lines
482 B
JavaScript
//
|
|
// accountUtils.js
|
|
// scripts/system/libraries/libraries
|
|
//
|
|
// Copyright 2017 High Fidelity, Inc.
|
|
//
|
|
|
|
openLoginWindow = function openLoginWindow() {
|
|
if ((HMD.active && Settings.getValue("hmdTabletBecomesToolbar", false))
|
|
|| (!HMD.active && Settings.getValue("desktopTabletBecomesToolbar", true))) {
|
|
Menu.triggerOption("Login / Sign Up");
|
|
} else {
|
|
tablet.loadQMLOnTop("dialogs/TabletLoginDialog.qml");
|
|
HMD.openTablet();
|
|
}
|
|
};
|