Viewing File: /home/ubuntu/voice-assistant-backend/public/admin-assets/plugins/src/editors/quill/custom-quill.js

// Basic

var quill = new Quill('#editor-container', {
  modules: {
    toolbar: [
      [{ header: [1, 2, false] }],
      ['bold', 'italic', 'underline'],
      ['image', 'code-block']
    ]
  },
  placeholder: 'Compose an epic...',
  theme: 'snow'  // or 'bubble'
});


// With Tooltip

  var quill = new Quill('#quill-tooltip', {
    modules: {
      toolbar: '#toolbar-container'
    },
    placeholder: 'Compose an epic...',
    theme: 'snow'
  });
  
  // Enable all tooltips
  var bsTooltip = document.querySelectorAll('[data-toggle="tooltip"]')
  for (let index = 0; index < bsTooltip.length; index++) {
      var tooltip = new bootstrap.Tooltip(bsTooltip[index])
  }
Back to Directory File Manager