mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-07-18 08:56:20 +00:00
27 lines
415 B
JavaScript
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();
|
|
}
|