mirror of
https://github.com/wavelog/wavelog.git
synced 2026-03-22 10:24:14 +00:00
8 lines
182 B
JavaScript
8 lines
182 B
JavaScript
var quill = new Quill('#quillArea', {
|
|
placeholder: 'Compose an epic...',
|
|
theme: 'snow'
|
|
});
|
|
|
|
$("#notes_add").on("submit",function(){
|
|
$("#hiddenArea").val(quill.root.innerHTML);
|
|
}) |