// File upload js const fileInput = document.querySelector('.ticket-file-upload'); if (fileInput) { try { FilePond.create(fileInput, { labelIdle: `

Choose a file

JPEG, PNG & PDF formats, up to 50MB

Choose Files

`, acceptedFileTypes: ['image/jpeg', 'image/png', 'application/pdf'], maxFileSize: '50MB', }); } catch (error) { console.error('FilePond initialization failed:', error); } } // Editor js $('#editor-1').trumbowyg({ btns: [ ['viewHTML'], ['undo', 'redo'], // Only supported in Blink browsers ['formatting'], ['strong', 'em', 'del'], ['superscript', 'subscript'], ['justifyLeft', 'justifyCenter', 'justifyRight', 'justifyFull'], ['unorderedList', 'orderedList'], ['horizontalRule'], ['removeformat'], ['fullscreen'] ], });