16 lines
328 B
JavaScript
16 lines
328 B
JavaScript
|
|
(function () {
|
||
|
|
"use strict";
|
||
|
|
window.panel.plugin("adrienpayet/panel-text-comments", {
|
||
|
|
textareaButtons: {
|
||
|
|
highlight: {
|
||
|
|
label: "Highlight",
|
||
|
|
icon: "wand",
|
||
|
|
click: function () {
|
||
|
|
this.command("toggle", "<mark>", "</mark>");
|
||
|
|
},
|
||
|
|
shortcut: "m",
|
||
|
|
},
|
||
|
|
},
|
||
|
|
});
|
||
|
|
})();
|