summaryrefslogtreecommitdiff
path: root/program/js/tiny_mce/plugins/emotions/jscripts/functions.js
diff options
context:
space:
mode:
Diffstat (limited to 'program/js/tiny_mce/plugins/emotions/jscripts/functions.js')
-rw-r--r--program/js/tiny_mce/plugins/emotions/jscripts/functions.js21
1 files changed, 21 insertions, 0 deletions
diff --git a/program/js/tiny_mce/plugins/emotions/jscripts/functions.js b/program/js/tiny_mce/plugins/emotions/jscripts/functions.js
new file mode 100644
index 000000000..95a9eafe8
--- /dev/null
+++ b/program/js/tiny_mce/plugins/emotions/jscripts/functions.js
@@ -0,0 +1,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();
+}