/**
* @author Shea Frederick - http://www.vinylfox.com
* @class Ext.ux.form.HtmlEditor.IndentOutdent
* @extends Ext.ux.form.HtmlEditor.MidasCommand
* <p>A plugin that creates two buttons on the HtmlEditor for indenting and outdenting of selected text.</p>
*/
Ext.ux.form.HtmlEditor.IndentOutdent = Ext.extend(Ext.ux.form.HtmlEditor.MidasCommand, {
// private
midasBtns: ['|', {
cmd: 'indent',
tooltip: {
title: 'Indent Text'
},
overflowText: 'Indent Text'
}, {
cmd: 'outdent',
tooltip: {
title: 'Outdent Text'
},
overflowText: 'Outdent Text'
}]
});