jack-cli
Version:
Chop through that Git log wicked fast!
25 lines • 682 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var help_text_1 = require("../util/help-text");
var interface_elements_1 = require("./interface-elements");
var helpDialog;
exports.getHelpDialog = function () {
if (helpDialog) {
return helpDialog;
}
helpDialog = interface_elements_1.getPageableBoxElement({
alwaysScroll: true,
bottom: 1,
content: help_text_1.HELP_TEXT,
keys: true,
left: 0,
name: 'helpDialog',
right: 0,
scrollable: true,
top: 0,
vi: true,
});
helpDialog.hide();
return helpDialog;
};
//# sourceMappingURL=help-dialog.js.map