15 lines
659 B
JavaScript
15 lines
659 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://mpassets.highfidelity.com/f7b93dfa-1685-46b6-9124-26dc00f56ea6-v1/destGuide2.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); });
|
|
|