adilkhash / django-trix-editor

Django Trix WYSIWYG Editor integration
MIT License
18 stars 1 forks source link

Add the ability to include custom JavaScript #5

Open ataylor32 opened 3 months ago

ataylor32 commented 3 months ago

It would be nice to be able to easily add code like this:

document.addEventListener("trix-before-initialize", () => {
  Trix.config.attachments.preview.caption = { name: false, size: false };
});