mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-01-23 02:35:49 +00:00
26 lines
415 B
JavaScript
26 lines
415 B
JavaScript
/* global CloudCmd */
|
|
|
|
CloudCmd.Help = exports;
|
|
|
|
import Images from '../dom/images.js';
|
|
|
|
export const 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();
|
|
}
|
|
|