cf7bfe79ca
When selected custom menu is removed, go to settings menu Allow iframe in custom menu to use Scripting API Return menu object when it is registered, can call remove function on it
18 lines
681 B
HTML
18 lines
681 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<script>
|
|
var script = document.createElement('script');
|
|
// Don't do this at home kids! The "document.referrer" part is actually inserting a XSS security.
|
|
// We are OK in this precise case because the HTML page is hosted on the "maps" domain that contains only static files.
|
|
script.setAttribute('src', document.referrer + 'iframe_api.js');
|
|
document.head.appendChild(script);
|
|
window.addEventListener('load', () => {
|
|
WA.ui.registerMenuCommand('test', 'customIframeMenu.html', {autoClose: true});
|
|
})
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<p>Add a custom menu</p>
|
|
</body>
|
|
</html> |