svncommit
2006-10-22 5c52d06844779efbf4034663f5e68db10619b367
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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, '&lt;');
    title = title.replace(/>/g, '&gt;');
 
    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();
}