2021-08-27 10:34:03 +02:00
|
|
|
let menuIframeApi = undefined;
|
|
|
|
|
2021-08-27 14:49:57 +02:00
|
|
|
WA.ui.registerMenuCommand('custom callback menu', () => {
|
2021-08-27 10:34:03 +02:00
|
|
|
WA.nav.openTab("https://workadventu.re/");
|
|
|
|
})
|
|
|
|
|
2021-08-27 14:49:57 +02:00
|
|
|
WA.ui.registerMenuCommand('custom iframe menu', {iframe: 'customIframeMenu.html'});
|
2021-08-27 10:34:03 +02:00
|
|
|
|
|
|
|
WA.room.onEnterZone('iframeMenu', () => {
|
2021-11-29 19:05:13 +01:00
|
|
|
menuIframeApi = WA.ui.registerMenuCommand('IFRAME USE API', {iframe: 'customIframeMenuApi.php', allowApi: true});
|
2021-08-27 10:34:03 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
WA.room.onLeaveZone('iframeMenu', () => {
|
|
|
|
menuIframeApi.remove();
|
2021-11-29 19:05:13 +01:00
|
|
|
})
|