mirror of
https://github.com/overte-org/overte.git
synced 2025-08-10 12:12:32 +02:00
Move chat app to be included as part of the default scripts
This commit is contained in:
parent
dd3a7f7249
commit
0e27ad767c
3 changed files with 3 additions and 2 deletions
|
@ -29,7 +29,8 @@ var DEFAULT_SCRIPTS_COMBINED = [
|
||||||
"system/notifications.js",
|
"system/notifications.js",
|
||||||
"system/dialTone.js",
|
"system/dialTone.js",
|
||||||
"system/firstPersonHMD.js",
|
"system/firstPersonHMD.js",
|
||||||
"system/tablet-ui/tabletUI.js"
|
"system/tablet-ui/tabletUI.js",
|
||||||
|
"system/chat.js"
|
||||||
];
|
];
|
||||||
var DEFAULT_SCRIPTS_SEPARATE = [
|
var DEFAULT_SCRIPTS_SEPARATE = [
|
||||||
"system/controllers/controllerScripts.js"
|
"system/controllers/controllerScripts.js"
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
|
|
||||||
(function() {
|
(function() {
|
||||||
|
|
||||||
var webPageURL = "ChatPage.html"; // URL of tablet web page.
|
var webPageURL = Script.resolvePath("html/ChatPage.html");; // URL of tablet web page.
|
||||||
var randomizeWebPageURL = true; // Set to true for debugging.
|
var randomizeWebPageURL = true; // Set to true for debugging.
|
||||||
var lastWebPageURL = ""; // Last random URL of tablet web page.
|
var lastWebPageURL = ""; // Last random URL of tablet web page.
|
||||||
var onChatPage = false; // True when chat web page is opened.
|
var onChatPage = false; // True when chat web page is opened.
|
Loading…
Reference in a new issue