Update head_tag.html
This commit is contained in:
parent
c5b28c8651
commit
c521c18da4
@ -61,6 +61,14 @@ api.addToolbarPopupMenuOptionsCallback(() => {
|
|||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
||||||
|
api.addToolbarPopupMenuOptionsCallback(() => {
|
||||||
|
return {
|
||||||
|
action: "bbcodecolor",
|
||||||
|
icon: "palette",
|
||||||
|
label: "bbcode_color_button"
|
||||||
|
};
|
||||||
|
});
|
||||||
|
|
||||||
api.modifyClass("controller:composer", {
|
api.modifyClass("controller:composer", {
|
||||||
actions: {
|
actions: {
|
||||||
strikethrough() {
|
strikethrough() {
|
||||||
@ -84,6 +92,9 @@ api.modifyClass("controller:composer", {
|
|||||||
floatleft() {
|
floatleft() {
|
||||||
this.get("toolbarEvent").applySurround('[wrap="floatl"]\n', '\n[/wrap]', "float_left_text");
|
this.get("toolbarEvent").applySurround('[wrap="floatl"]\n', '\n[/wrap]', "float_left_text");
|
||||||
}
|
}
|
||||||
|
bbcodecolor() {
|
||||||
|
this.get("toolbarEvent").applySurround('[color=#222]', '[/color]', bbcode_color_text");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
@ -132,4 +143,8 @@ translations.float_left_button = settings.float_left_button;
|
|||||||
translations.composer.float_left_text =
|
translations.composer.float_left_text =
|
||||||
settings.float_left_text;
|
settings.float_left_text;
|
||||||
|
|
||||||
|
translations.bbcode_color_button = settings.bbcode_color_button;
|
||||||
|
translations.composer.bbcode_color_text =
|
||||||
|
settings.bbcode_color_text;
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
|
Loading…
Reference in New Issue
Block a user