import {getEventName} from "../util/compatibility"; import {MenuItem} from "./MenuItem"; export class Help extends MenuItem { constructor(vditor: IVditor, menuItem: IMenuItem) { super(vditor, menuItem); this.element.children[0].addEventListener(getEventName(), (event) => { event.preventDefault(); vditor.tip.show(`
Markdown 使用指南
Vditor 支持
`, 0); }); } }