Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | None | 0 0
  1. <div class="body">
  2. <div id="toolbar">
  3. <!-- custom toolbar: linking all buttons to Quill -->
  4. </div>
  5. <div class="scrolling-container">
  6.  
  7. <div id="editor">
  8.  
  9. </div>
  10.  
  11. var Font = Quill.import('formats/font');
  12. import { ImageResize } from 'quill-image-resize-module';
  13.  
  14. Font.whitelist = ['inconsolata', 'roboto', 'arial', 'caslon', 'roman', 'minion'];
  15. Quill.register(Font, true);
  16. Quill.register('modules/imageResize', ImageResize);
  17.  
  18. var quill = new Quill('#editor', {
  19. modules: {
  20. toolbar: '#toolbar',
  21. ImageResize: {
  22. modules: [ 'Resize', 'DisplaySize', 'Toolbar' ]
  23. }
  24.  
  25. },
  26. scrollingContainer: '#scrolling-container',
  27. theme: 'snow',
  28.  
  29. });
  30.  
  31. <script src="/node_modules/quill-image-resize-module/image-resize.min.js"></script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement