summaryrefslogtreecommitdiff
path: root/public/javascripts/tiny_mce/plugins/nonbreaking
diff options
context:
space:
mode:
Diffstat (limited to 'public/javascripts/tiny_mce/plugins/nonbreaking')
-rw-r--r--public/javascripts/tiny_mce/plugins/nonbreaking/editor_plugin.js1
-rw-r--r--public/javascripts/tiny_mce/plugins/nonbreaking/editor_plugin_src.js50
2 files changed, 0 insertions, 51 deletions
diff --git a/public/javascripts/tiny_mce/plugins/nonbreaking/editor_plugin.js b/public/javascripts/tiny_mce/plugins/nonbreaking/editor_plugin.js
deleted file mode 100644
index f2dbbff..0000000
--- a/public/javascripts/tiny_mce/plugins/nonbreaking/editor_plugin.js
+++ /dev/null
@@ -1 +0,0 @@
1(function(){tinymce.create("tinymce.plugins.Nonbreaking",{init:function(a,b){var c=this;c.editor=a;a.addCommand("mceNonBreaking",function(){a.execCommand("mceInsertContent",false,(a.plugins.visualchars&&a.plugins.visualchars.state)?'<span class="mceItemHidden mceVisualNbsp">&middot;</span>':"&nbsp;")});a.addButton("nonbreaking",{title:"nonbreaking.nonbreaking_desc",cmd:"mceNonBreaking"});if(a.getParam("nonbreaking_force_tab")){a.onKeyDown.add(function(d,f){if(tinymce.isIE&&f.keyCode==9){d.execCommand("mceNonBreaking");d.execCommand("mceNonBreaking");d.execCommand("mceNonBreaking");tinymce.dom.Event.cancel(f)}})}},getInfo:function(){return{longname:"Nonbreaking space",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/nonbreaking",version:tinymce.majorVersion+"."+tinymce.minorVersion}}});tinymce.PluginManager.add("nonbreaking",tinymce.plugins.Nonbreaking)})(); \ No newline at end of file
diff --git a/public/javascripts/tiny_mce/plugins/nonbreaking/editor_plugin_src.js b/public/javascripts/tiny_mce/plugins/nonbreaking/editor_plugin_src.js
deleted file mode 100644
index b723756..0000000
--- a/public/javascripts/tiny_mce/plugins/nonbreaking/editor_plugin_src.js
+++ /dev/null
@@ -1,50 +0,0 @@
1/**
2 * $Id: editor_plugin_src.js 201 2007-02-12 15:56:56Z spocke $
3 *
4 * @author Moxiecode
5 * @copyright Copyright © 2004-2008, Moxiecode Systems AB, All rights reserved.
6 */
7
8(function() {
9 tinymce.create('tinymce.plugins.Nonbreaking', {
10 init : function(ed, url) {
11 var t = this;
12
13 t.editor = ed;
14
15 // Register commands
16 ed.addCommand('mceNonBreaking', function() {
17 ed.execCommand('mceInsertContent', false, (ed.plugins.visualchars && ed.plugins.visualchars.state) ? '<span class="mceItemHidden mceVisualNbsp">&middot;</span>' : '&nbsp;');
18 });
19
20 // Register buttons
21 ed.addButton('nonbreaking', {title : 'nonbreaking.nonbreaking_desc', cmd : 'mceNonBreaking'});
22
23 if (ed.getParam('nonbreaking_force_tab')) {
24 ed.onKeyDown.add(function(ed, e) {
25 if (tinymce.isIE && e.keyCode == 9) {
26 ed.execCommand('mceNonBreaking');
27 ed.execCommand('mceNonBreaking');
28 ed.execCommand('mceNonBreaking');
29 tinymce.dom.Event.cancel(e);
30 }
31 });
32 }
33 },
34
35 getInfo : function() {
36 return {
37 longname : 'Nonbreaking space',
38 author : 'Moxiecode Systems AB',
39 authorurl : 'http://tinymce.moxiecode.com',
40 infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/nonbreaking',
41 version : tinymce.majorVersion + "." + tinymce.minorVersion
42 };
43 }
44
45 // Private methods
46 });
47
48 // Register plugin
49 tinymce.PluginManager.add('nonbreaking', tinymce.plugins.Nonbreaking);
50})(); \ No newline at end of file