mirror of
https://github.com/overte-org/community-apps.git
synced 2025-04-06 01:02:34 +02:00
Add files via upload
This commit is contained in:
parent
97983b1618
commit
2362a816a7
1 changed files with 8 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue