
| Current Path : /var/www/html/rocksensor1/web/modules/contrib/entity_export_csv/js/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/rocksensor1/web/modules/contrib/entity_export_csv/js/download.js |
/**
* @file
*/
(function ($, Drupal) {
Drupal.behaviors.entity_export_csv_download = {
attach: function (context, settings) {
$('a[data-auto-download]', context).each(function () {
let $this = $(this);
setTimeout(function () {
window.location = $this.attr('href');
}, 2000);
});
}
};
})(jQuery, Drupal);