functions.js
资源名称:bangong.rar [点击查看]
上传用户:dlqqsh
上传日期:2021-11-13
资源大小:7840k
文件大小:1k
源码类别:
OA系统
开发平台:
Java
- function init() {
- tinyMCEPopup.resizeToInnerSize();
- }
- function insertEmotion(file_name, title) {
- title = tinyMCE.getLang(title);
- if (title == null)
- title = "";
- // XML encode
- title = title.replace(/&/g, '&');
- title = title.replace(/"/g, '"');
- title = title.replace(/</g, '<');
- title = title.replace(/>/g, '>');
- var html = '<img src="' + tinyMCE.baseURL + "/plugins/emotions/images/" + file_name + '" mce_src="' + tinyMCE.baseURL + "/plugins/emotions/images/" + file_name + '" border="0" alt="' + title + '" title="' + title + '" />';
- tinyMCE.execCommand('mceInsertContent', false, html);
- tinyMCEPopup.close();
- }