cloudcmd/client/modules/help.mjs
2026-02-03 00:58:16 +02:00

28 lines
416 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();
}