29 lines
723 B
JavaScript
Raw Normal View History

2016-11-02 16:50:37 -07:00
"use strict";
//
// help.js
// scripts/system/
//
// Created by Howard Stearns on 2 Nov 2016
// Copyright 2016 High Fidelity, Inc.
//
// Distributed under the Apache License, Version 2.0.
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
//
/* globals Tablet, Script, HMD, Controller, Menu */
2016-11-02 16:50:37 -07:00
2018-09-11 12:21:02 -07:00
(function () { // BEGIN LOCAL_SCOPE
var AppUi = Script.require('appUi');
2016-11-02 16:50:37 -07:00
2018-09-11 12:21:02 -07:00
var HELP_URL = Script.resourcesPath() + "html/tabletHelp.html";
var HELP_BUTTON_NAME = "HELP";
function startup() {
ui = new AppUi({
buttonName: HELP_BUTTON_NAME,
sortOrder: 6,
home: HELP_URL
});
2017-03-22 19:14:53 +01:00
}
2018-09-11 12:21:02 -07:00
startup();
2016-11-02 16:50:37 -07:00
}()); // END LOCAL_SCOPE