This repository has been archived on 2022-07-12. You can view files and clone it, but cannot push or open issues or pull requests.
opencase/modules/opencase_reporting/js/opencase-reporting.js
Naomi 56be669fe9 Fixed the jQuery on the download data button
The click binding was getting lost after ajax reload
2018-10-01 17:55:41 +01:00

6 lines
202 B
JavaScript

jQuery('body').on('click','#opencase_reporting_buttons #download_data',function(){
var url = new URL(location.href);
url.searchParams.append('_format', 'csv');
location.href = url.toString();
});