You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
446 B
12 lines
446 B
$(document).on('turbolinks:load', function(){
|
|
if ($('body.admins-daily-school-statistics-index-page').length > 0) {
|
|
$('.export-action').on('click', function(){
|
|
var form = $(".daily-school-statistic-list-form .search-form")
|
|
var exportLink = $(this);
|
|
var keyword = form.find("input[name='keyword']").val();
|
|
|
|
var url = exportLink.data("url").split('?')[0] + "?keyword=" + keyword;
|
|
window.open(url);
|
|
});
|
|
}
|
|
}) |