cloudcmd/client/help.js
2017-02-13 16:11:01 +02:00

31 lines
531 B
JavaScript

'use strict';
/* global DOM, CloudCmd */
window.CloudCmd.Help = HelpProto;
function HelpProto() {
const Images = DOM.Images;
const Help = this;
function init() {
Images.show.load('top');
Help.show();
}
this.show = () => {
CloudCmd
.Markdown
.show('/HELP.md', {
positionLoad : 'top',
relative : true
});
};
this.hide = () => {
CloudCmd.View.hide();
};
init();
}