/* redo-menu */ import $ from '../../util/dom-core.js' // 构造函数 function Redo(editor) { this.editor = editor this.$elem = $( `
` ) this.type = 'click' // 当前是否 active 状态 this._active = false } // 原型 Redo.prototype = { constructor: Redo, // 点击事件 onClick: function (e) { // 点击菜单将触发这里 const editor = this.editor // 执行 redo 命令 editor.cmd.do('redo') } } export default Redo