29 lines
624 B
JavaScript
29 lines
624 B
JavaScript
//editor
|
|
|
|
$('#editor').trumbowyg({
|
|
btns: [
|
|
['viewHTML'],
|
|
['undo', 'redo'], // Only supported in Blink browsers
|
|
['formatting'],
|
|
['strong', 'em', 'del'],
|
|
['superscript', 'subscript'],
|
|
['justifyLeft', 'justifyCenter', 'justifyRight', 'justifyFull'],
|
|
['unorderedList', 'orderedList'],
|
|
['horizontalRule'],
|
|
['removeformat'],
|
|
['fullscreen']
|
|
],
|
|
});
|
|
|
|
"use strict";
|
|
|
|
$(function () {
|
|
const tooltipInit = {
|
|
init: function () {
|
|
$("button").tooltip();
|
|
}
|
|
};
|
|
|
|
tooltipInit.init();
|
|
});
|