15 lines
658 B
JavaScript
15 lines
658 B
JavaScript
var moment = Script.require('https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.17.1/moment.min.js');
|
|
Script.include.call({ moment: moment }, 'https://momentjs.com/downloads/moment-timezone-with-data-2012-2022.min.js');
|
|
|
|
var URL = 'http://hifi-content.s3.amazonaws.com/caitlyn/scratch/destGuide_2b/trinkettsGuideV2.html';
|
|
var CONFIG = {
|
|
icon: Script.resolvePath('app.svg'),
|
|
text: 'GUIDE',
|
|
};
|
|
|
|
var tablet = Tablet.getTablet("com.highfidelity.interface.tablet.system"),
|
|
button = tablet.addButton(CONFIG);
|
|
|
|
button.clicked.connect(function() { tablet.gotoWebScreen(URL); });
|
|
Script.scriptEnding.connect(function() { tablet.removeButton(button); });
|
|
|