cloudcmd/client/modules/help.js
2026-02-03 15:03:49 +02:00

27 lines
415 B
JavaScript

import * as Images from '#dom/images';
const {CloudCmd} = globalThis;
CloudCmd.Help = {
init,
show,
hide,
};
export function init() {
Images.show.load('top');
}
export function show() {
const positionLoad = 'top';
const relative = true;
CloudCmd.Markdown.show('/HELP.md', {
positionLoad,
relative,
});
}
export function hide() {
CloudCmd.View.hide();
}