BestNotes/bestnotes/static/shownote.js

23 lines
619 B
JavaScript
Raw Normal View History

2020-01-11 13:17:12 +01:00
//activate tinyMCE
tinymce.init({
selector: '.tmpTextArea',
menubar: false,
2020-01-15 16:14:42 +01:00
skin: 'oxide-dark',
branding: false,
2020-01-15 16:14:42 +01:00
content_css: 'dark',
2020-01-11 13:17:12 +01:00
plugins: [
2020-01-15 16:14:42 +01:00
'autoresize advlist autolink lists link image charmap print preview anchor',
'searchreplace visualblocks codesample fullscreen',
'insertdatetime media table paste code'
2020-01-11 13:17:12 +01:00
],
readonly: 1,
toolbar: false,
height: 500,
width: 700,
});
//get what is inside the textarea editor
var content = $('iframe').contents().find('#tinymce').contents();
//append it in a div
$("#toAppend").append(content);
//disable edit