Mercurial > public > sg101
annotate media/js/tiny_mce/plugins/emotions/editor_plugin_src.js @ 115:0ce0104c7df3
Forums: split topic.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Thu, 22 Oct 2009 02:57:18 +0000 |
parents | a5b4c5ce0658 |
children | 149c3567fec1 |
rev | line source |
---|---|
bgneal@45 | 1 /** |
bgneal@45 | 2 * $Id: editor_plugin_src.js 520 2008-01-07 16:30:32Z spocke $ |
bgneal@45 | 3 * |
bgneal@45 | 4 * @author Moxiecode |
bgneal@45 | 5 * @copyright Copyright © 2004-2008, Moxiecode Systems AB, All rights reserved. |
bgneal@45 | 6 */ |
bgneal@45 | 7 |
bgneal@45 | 8 (function() { |
bgneal@45 | 9 tinymce.create('tinymce.plugins.EmotionsPlugin', { |
bgneal@45 | 10 init : function(ed, url) { |
bgneal@45 | 11 // Register commands |
bgneal@45 | 12 ed.addCommand('mceEmotion', function() { |
bgneal@45 | 13 ed.windowManager.open({ |
bgneal@45 | 14 file : url + '/emotions.htm', |
bgneal@45 | 15 width : 250 + parseInt(ed.getLang('emotions.delta_width', 0)), |
bgneal@45 | 16 height : 160 + parseInt(ed.getLang('emotions.delta_height', 0)), |
bgneal@45 | 17 inline : 1 |
bgneal@45 | 18 }, { |
bgneal@45 | 19 plugin_url : url |
bgneal@45 | 20 }); |
bgneal@45 | 21 }); |
bgneal@45 | 22 |
bgneal@45 | 23 // Register buttons |
bgneal@45 | 24 ed.addButton('emotions', {title : 'emotions.emotions_desc', cmd : 'mceEmotion'}); |
bgneal@45 | 25 }, |
bgneal@45 | 26 |
bgneal@45 | 27 getInfo : function() { |
bgneal@45 | 28 return { |
bgneal@45 | 29 longname : 'Emotions', |
bgneal@45 | 30 author : 'Moxiecode Systems AB', |
bgneal@45 | 31 authorurl : 'http://tinymce.moxiecode.com', |
bgneal@45 | 32 infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/emotions', |
bgneal@45 | 33 version : tinymce.majorVersion + "." + tinymce.minorVersion |
bgneal@45 | 34 }; |
bgneal@45 | 35 } |
bgneal@45 | 36 }); |
bgneal@45 | 37 |
bgneal@45 | 38 // Register plugin |
bgneal@45 | 39 tinymce.PluginManager.add('emotions', tinymce.plugins.EmotionsPlugin); |
bgneal@45 | 40 })(); |