Files
asset-management-system/resources/assets/js/profile.js
Arya Dwi Putra 5514f7de5b first commit
2025-12-01 06:41:22 +07:00

21 lines
640 B
JavaScript

(function () {
"use strict"
/* dropzone */
let myDropzone = new Dropzone(".dropzone", {
maxFiles: 1, // Allow only 1 file to be uploaded
addRemoveLinks: true, // Adds a remove link to each file preview
dictRemoveFile: 'Remove', // Change the text on the remove button if needed
});
var lightboxVideo = GLightbox({
selector: '.glightbox'
});
lightboxVideo.on('slide_changed', ({ prev, current }) => {
console.log('Prev slide', prev);
console.log('Current slide', current);
const { slideIndex, slideNode, slideConfig, player } = current;
});
})();