content/hifi-content/alan/dev/Scripts/AZbrowse.js
2022-02-13 20:41:08 +01:00

25 lines
660 B
JavaScript

//
// AZbrowse.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 = "https://tympanus.net/Development/ExpandingGridItemAnimation/";
function startup() {
ui = new AppUi({
graphicsDirectory: Script.resolvePath("./icons/tablet-icons/"),
buttonName: SIGNUP_BUTTON_NAME,
home: URL
});
}
startup();
}());