print.js 342 B

1234567891011121314151617
  1. ///import core
  2. ///commands 打印
  3. ///commandsName Print
  4. ///commandsTitle 打印
  5. /**
  6. * @description 打印
  7. * @name baidu.editor.execCommand
  8. * @param {String} cmdName print打印编辑器内容
  9. * @author zhanyi
  10. */
  11. UE.commands['print'] = {
  12. execCommand : function(){
  13. this.window.print();
  14. },
  15. notNeedUndo : 1
  16. };