Files
carpseeds.pl/wp-content/plugins/loco-translate/pub/js/delete.js
2024-07-15 11:28:08 +02:00

13 lines
318 B
JavaScript

/**
* Script for file delete operation
*/
!function( window, document, $ ){
var fsHook = document.getElementById('loco-fs'),
elForm = document.getElementById('loco-del')
;
if( fsHook && elForm ){
window.locoScope.fs.init(fsHook).setForm(elForm);
}
}( window, document, jQuery );