Posts

Showing posts from April, 2019

Quill installation on Meteor JS

Image
Fistly put these link on top of your page. <link href="//cdn.quilljs.com/1.2.3/quill.core.css" rel="stylesheet"> <script src="//cdn.quilljs.com/1.2.3/quill.core.js"></script> <script src="//cdn.quilljs.com/1.2.3/quill.js"></script> <script src="//cdn.quilljs.com/1.2.3/quill.min.js"></script> <link href="//cdn.quilljs.com/1.2.3/quill.snow.css" rel="stylesheet"> <link href="//cdn.quilljs.com/1.2.3/quill.bubble.css" rel="stylesheet"> Now we need to add this div to show editor's toolbar for performing in editor operations on front page. Attached screenshot contains the fiddle screen shot in what i have already integrated the quill editor for future references. https://jsfiddle.net/kingarch/rt387zbj <div id="editor">   <p>dummy text</p> </div> Now we need to add this