forked from fanruan/fineui
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.3 KiB
41 lines
1.3 KiB
8 years ago
|
/**
|
||
|
*
|
||
|
* Created by GUY on 2015/11/26.
|
||
|
* @class BI.RichEditorItalicButton
|
||
|
* @extends BI.RichEditorAction
|
||
|
*/
|
||
|
BI.RichEditorUnderlineButton = BI.inherit(BI.RichEditorAction, {
|
||
|
_defaultConfig: function () {
|
||
|
return BI.extend(BI.RichEditorUnderlineButton.superclass._defaultConfig.apply(this, arguments), {
|
||
|
width: 20,
|
||
|
height: 20,
|
||
|
command: "Underline",
|
||
|
tags: ["U"],
|
||
|
css: {textDecoration: "underline"}
|
||
|
});
|
||
|
},
|
||
|
|
||
|
_init: function () {
|
||
|
BI.RichEditorUnderlineButton.superclass._init.apply(this, arguments);
|
||
|
var self = this, o = this.options;
|
||
|
this.underline = BI.createWidget({
|
||
|
type: "bi.icon_button",
|
||
|
element: this,
|
||
|
title: BI.i18nText("BI-Basic_Underline"),
|
||
|
height: 20,
|
||
|
width: 20,
|
||
|
cls: "text-toolbar-button bi-list-item-active text-underline-font",
|
||
|
});
|
||
|
this.underline.on(BI.IconButton.EVENT_CHANGE, function () {
|
||
|
self.doCommand();
|
||
|
});
|
||
|
},
|
||
|
activate: function () {
|
||
|
this.underline.setSelected(true);
|
||
|
},
|
||
|
|
||
|
deactivate: function () {
|
||
|
this.underline.setSelected(false);
|
||
|
},
|
||
|
});
|
||
|
BI.shortcut("bi.rich_editor_underline_button", BI.RichEditorUnderlineButton)
|