Sha256: ff51d115c8fd23ecc0f1497845ef720307b691235a4f0b2e2bcae2a6a390ec86
Contents?: true
Size: 602 Bytes
Versions: 4
Compression:
Stored size: 602 Bytes
Contents
$(function() { $(".wyswyg").each(function() { var $editor = $(this).find(".editor"); var $toolbar = $(this).find(".toolbar"); var editor = new Quill($editor.get(0), { theme: 'snow', // modules: { // toolbar: toolbarOptions // } modules: { toolbar: $toolbar.get(0) } }); // var $toolbar = $(this).find(".toolbar"); // var $editor = $(this).find(".editor"); // var editor = new Quill($editor.get(0), { // theme: 'snow' // }); // editor.addModule('toolbar', { // container: $toolbar.get(0) // Selector for toolbar container // }); }); });
Version data entries
4 entries across 4 versions & 1 rubygems