1234567891011121314151617 |
- ///import core
- ///commands 打印
- ///commandsName Print
- ///commandsTitle 打印
- /**
- * @description 打印
- * @name baidu.editor.execCommand
- * @param {String} cmdName print打印编辑器内容
- * @author zhanyi
- */
- UE.commands['print'] = {
- execCommand : function(){
- this.window.print();
- },
- notNeedUndo : 1
- };
|