You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you want to insert the color function e.g. to write in blue or red or with a background color simply follow these steps:
Open file
ownnote-master\js\script.js
and edit the following lines:
Line 7: insert "textcolor"
Line 12 insert toolbar containing "forecolor backcolor | "
Optional you can activate menubar in line 5
The first line would look like these
If you want to insert the color function e.g. to write in blue or red or with a background color simply follow these steps:
Open file
ownnote-master\js\script.js
and edit the following lines:
Line 7: insert "textcolor"
Line 12 insert toolbar containing "forecolor backcolor | "
Optional you can activate menubar in line 5
The first line would look like these
`function tinymceInit() {
tinymce.init({
selector: "div.editable",
menubar: true,
plugins: [
"textcolor advlist autolink lists link charmap print preview anchor",
"searchreplace visualblocks code fullscreen",
"insertdatetime media table contextmenu bdesk_photo autoresize"
],
extended_valid_elements: "form[name|id|action|method|enctype|accept-charset|onsubmit|onreset|target],input[id|name|type|value|size|maxlength|checked|accept|src|width|height|disabled|readonly|tabindex|accesskey|onfocus|onblur|onchange|onselect|onclick|onkeyup|onkeydown|required|style],textarea[id|name|rows|cols|maxlength|disabled|readonly|tabindex|accesskey|onfocus|onblur|onchange|onselect|onclick|onkeyup|onkeydown|required|style],option[name|id|value|selected|style],select[id|name|type|value|size|maxlength|checked|width|height|disabled|readonly|tabindex|accesskey|onfocus|onblur|onchange|onselect|onclick|multiple|style]",
toolbar: "insertfile undo redo | styleselect | bold italic strikethrough | alignleft aligncenter alignright alignjustify | forecolor backcolor | bullist numlist outdent indent | link bdesk_photo",
allow_html_data_urls: true,
`
The text was updated successfully, but these errors were encountered: