summaryrefslogtreecommitdiff
path: root/public/javascripts/tiny_mce/plugins/autoresize
diff options
context:
space:
mode:
authorhukl <contact@smyck.org>2009-11-16 22:41:37 +0100
committerhukl <contact@smyck.org>2009-11-16 22:41:37 +0100
commitc4b8b7f61d0c455aa77f72b96de4ba02ed03aa41 (patch)
treec19c26fe3169b73b59cd31d57b9b01c7ddb035ba /public/javascripts/tiny_mce/plugins/autoresize
parent6ea36eff7389e4e6d2dbc358bf6af0c6966d4ae9 (diff)
tinymce update. activated safari and paste plugin to prevent messy markup after copy and paste. hope that helps *sigh*
Diffstat (limited to 'public/javascripts/tiny_mce/plugins/autoresize')
-rw-r--r--public/javascripts/tiny_mce/plugins/autoresize/editor_plugin_src.js46
1 files changed, 23 insertions, 23 deletions
diff --git a/public/javascripts/tiny_mce/plugins/autoresize/editor_plugin_src.js b/public/javascripts/tiny_mce/plugins/autoresize/editor_plugin_src.js
index 89a9b89..8b2f374 100644
--- a/public/javascripts/tiny_mce/plugins/autoresize/editor_plugin_src.js
+++ b/public/javascripts/tiny_mce/plugins/autoresize/editor_plugin_src.js
@@ -1,27 +1,27 @@
1/** 1/**
2* $Id: editor_plugin_src.js 539 2008-01-14 19:08:58Z spocke $ 2 * $Id: editor_plugin_src.js 539 2008-01-14 19:08:58Z spocke $
3* 3 *
4* @author Moxiecode 4 * @author Moxiecode
5* @copyright Copyright © 2004-2008, Moxiecode Systems AB, All rights reserved. 5 * @copyright Copyright © 2004-2008, Moxiecode Systems AB, All rights reserved.
6*/ 6 */
7 7
8(function() { 8(function() {
9 /** 9 /**
10 * Auto Resize 10 * Auto Resize
11 * 11 *
12 * This plugin automatically resizes the content area to fit its content height. 12 * This plugin automatically resizes the content area to fit its content height.
13 * It will retain a minimum height, which is the height of the content area when 13 * It will retain a minimum height, which is the height of the content area when
14 * it's initialized. 14 * it's initialized.
15 */ 15 */
16 tinymce.create('tinymce.plugins.AutoResizePlugin', { 16 tinymce.create('tinymce.plugins.AutoResizePlugin', {
17 /** 17 /**
18 * Initializes the plugin, this will be executed after the plugin has been created. 18 * Initializes the plugin, this will be executed after the plugin has been created.
19 * This call is done before the editor instance has finished it's initialization so use the onInit event 19 * This call is done before the editor instance has finished it's initialization so use the onInit event
20 * of the editor instance to intercept that event. 20 * of the editor instance to intercept that event.
21 * 21 *
22 * @param {tinymce.Editor} ed Editor instance that the plugin is initialized in. 22 * @param {tinymce.Editor} ed Editor instance that the plugin is initialized in.
23 * @param {string} url Absolute URL to where the plugin is located. 23 * @param {string} url Absolute URL to where the plugin is located.
24 */ 24 */
25 init : function(ed, url) { 25 init : function(ed, url) {
26 var t = this; 26 var t = this;
27 27
@@ -93,11 +93,11 @@
93 }, 93 },
94 94
95 /** 95 /**
96 * Returns information about the plugin as a name/value array. 96 * Returns information about the plugin as a name/value array.
97 * The current keys are longname, author, authorurl, infourl and version. 97 * The current keys are longname, author, authorurl, infourl and version.
98 * 98 *
99 * @return {Object} Name/value array containing information about the plugin. 99 * @return {Object} Name/value array containing information about the plugin.
100 */ 100 */
101 getInfo : function() { 101 getInfo : function() {
102 return { 102 return {
103 longname : 'Auto Resize', 103 longname : 'Auto Resize',