Add files via upload

This commit is contained in:
Keb Helion 2020-02-14 23:45:50 -05:00 committed by GitHub
parent 97983b1618
commit 2362a816a7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -22,6 +22,7 @@
var tablet = Tablet.getTablet("com.highfidelity.interface.tablet.system");
tablet.screenChanged.connect(onScreenChanged);
var button = tablet.addButton({
text: APP_NAME,
icon: APP_ICON_INACTIVE,
@ -93,11 +94,17 @@
}
function onScreenChanged(type, url) {
Appstatus = !Appstatus;
button.editProperties({
isActive: Appstatus
});
}
function cleanup() {
tablet.webEventReceived.disconnect(onMoreAppWebEventReceived);
tablet.screenChanged.disconnect(onScreenChanged);
tablet.removeButton(button);
}