/**
* @author Shea Frederick - http://www.vinylfox.com
* @class Ext.ux.form.HtmlEditor.RemoveFormat
* @extends Ext.ux.form.HtmlEditor.MidasCommand
* <p>A plugin that creates a button on the HtmlEditor that will remove all formatting on selected text.</p>
*/
Ext.ux.form.HtmlEditor.RemoveFormat = Ext.extend(Ext.ux.form.HtmlEditor.MidasCommand, {
midasBtns: ['|', {
enableOnSelection: true,
cmd: 'removeFormat',
tooltip: {
title: 'Remove Formatting'
},
overflowText: 'Remove Formatting'
}]
});