// // trivia.js // // Created by Rebecca Stankus on 06/11/18 // Copyright 2018 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 (function() { var AppUi = Script.require('appUi'); var SIGNUP_BUTTON_NAME = "WEBPAGE"; var URL = ""; function startup() { ui = new AppUi({ graphicsDirectory: Script.resolvePath("./icons/tablet-icons/"), buttonName: SIGNUP_BUTTON_NAME, home: URL }); } startup(); }());