includes/clientside/tinymce/plugins/emotions/js/emotions.js
author Dan
Sun, 31 May 2009 23:26:05 -0400
changeset 1016 6d32d80b2192
parent 335 67bd3121a12e
permissions -rw-r--r--
Comments: SECURITY: Fixed IP not recorded in non-JSON submit and a few other non-security issues

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);