wicket.contrib.tinymce.settings.AutoResizePlugin Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wicketstuff-tinymce3 Show documentation
Show all versions of wicketstuff-tinymce3 Show documentation
Adds support for WYSIWYG editing (using TinyMce) to Wicket
package wicket.contrib.tinymce.settings;
/**
* Enables the Auto Resize plugin, which automatically resizes the editor to the content inside it.
*
* http://
* tinymce.moxiecode.com/wiki.php/Plugin:autoresize
*
* @author jbrookover
*
*/
public class AutoResizePlugin extends Plugin
{
private static final long serialVersionUID = 1L;
public AutoResizePlugin()
{
super("autoresize");
}
}