pastetext.js
上传用户:dlqqsh
上传日期:2021-11-13
资源大小:7840k
文件大小:1k
源码类别:

OA系统

开发平台:

Java

  1. function saveContent() {
  2. if (document.forms[0].htmlSource.value == '') {
  3. tinyMCEPopup.close();
  4. return false;
  5. }
  6. tinyMCEPopup.execCommand('mcePasteText', false, {
  7. html : document.forms[0].htmlSource.value,
  8. linebreaks : document.forms[0].linebreaks.checked
  9. });
  10. tinyMCEPopup.close();
  11. }
  12. function onLoadInit() {
  13. tinyMCEPopup.resizeToInnerSize();
  14. // Remove Gecko spellchecking
  15. if (tinyMCE.isGecko)
  16. document.body.spellcheck = tinyMCE.getParam("gecko_spellcheck");
  17. resizeInputs();
  18. }
  19. var wHeight=0, wWidth=0, owHeight=0, owWidth=0;
  20. function resizeInputs() {
  21. if (!tinyMCE.isMSIE) {
  22. wHeight = self.innerHeight-80;
  23. wWidth = self.innerWidth-17;
  24. } else {
  25. wHeight = document.body.clientHeight-80;
  26. wWidth = document.body.clientWidth-17;
  27. }
  28. document.forms[0].htmlSource.style.height = Math.abs(wHeight) + 'px';
  29. document.forms[0].htmlSource.style.width  = Math.abs(wWidth) + 'px';
  30. }