mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
13275: updated web-client to use tinymce v3 13276: overlay display fix for when field has large content git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@13585 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
23 lines
541 B
JavaScript
Executable File
23 lines
541 B
JavaScript
Executable File
tinyMCEPopup.requireLangPack();
|
|
|
|
var EmotionsDialog = {
|
|
init : function(ed) {
|
|
tinyMCEPopup.resizeToInnerSize();
|
|
},
|
|
|
|
insert : function(file, title) {
|
|
var ed = tinyMCEPopup.editor, dom = ed.dom;
|
|
|
|
tinyMCEPopup.execCommand('mceInsertContent', false, dom.createHTML('img', {
|
|
src : tinyMCEPopup.getWindowArg('plugin_url') + '/img/' + file,
|
|
alt : ed.getLang(title),
|
|
title : ed.getLang(title),
|
|
border : 0
|
|
}));
|
|
|
|
tinyMCEPopup.close();
|
|
}
|
|
};
|
|
|
|
tinyMCEPopup.onInit.add(EmotionsDialog.init, EmotionsDialog);
|