// 1 basic editor // editor js $(document).ready(function() { const editorElement = $('#description-editor'); if (editorElement.length) { editorElement.trumbowyg({ btns: [ ['viewHTML'], ['undo', 'redo'], ['formatting'], ['strong', 'em', 'del'], ['superscript', 'subscript'], ['justifyLeft', 'justifyCenter', 'justifyRight', 'justifyFull'], ['unorderedList', 'orderedList'], ['horizontalRule'], ['removeformat'], ['fullscreen'] ], }); } else { console.warn('#description-editor not found. Please check the element.'); } }); // select js $(document).ready(function() { $('.category-select').select2(); }); // file upload js FilePond.registerPlugin(FilePondPluginFileValidateType); FilePond.registerPlugin(FilePondPluginImagePreview); FilePond.registerPlugin(FilePondPluginFileEncode); FilePond.registerPlugin(FilePondPluginFileValidateSize); FilePond.registerPlugin(FilePondPluginImageExifOrientation); FilePond.create( document.querySelector('#addProduct'), { labelIdle: `
Upload Your Product Images
`, } );