cloudcmd/client/modules/help.js
2026-01-21 19:59:27 +02:00

27 lines
449 B
JavaScript

'use strict';
/* global CloudCmd */
CloudCmd.Help = exports;
const Images = require('../dom/images.mjs');
module.exports.init = () => {
Images.show.load('top');
};
module.exports.show = show;
module.exports.hide = hide;
function show() {
const positionLoad = 'top';
const relative = true;
CloudCmd.Markdown.show('/HELP.md', {
positionLoad,
relative,
});
}
function hide() {
CloudCmd.View.hide();
}