Lines 2009-2019
Link Here
|
2009 |
if ($(element).attr('disabled') === undefined) { |
2009 |
if ($(element).attr('disabled') === undefined) { |
2010 |
$(element).attr('disabled', 'disabled'); |
2010 |
$(element).attr('disabled', 'disabled'); |
2011 |
$(element).addClass('disabled'); |
2011 |
$(element).addClass('disabled'); |
2012 |
$(element).find('i.fa-play').first().replaceWith('<i class=\"fa fa-spinner fa-spin\" style=\"--fa-animation-duration: 2s;\"></i>'); |
2012 |
$(element).find('i.fa').first().replaceWith('<i class=\"fa fa-spinner fa-spin\" style=\"--fa-animation-duration: 2s;\"></i>'); |
2013 |
} else { |
2013 |
} else { |
2014 |
$(element).removeAttr('disabled'); |
2014 |
$(element).removeAttr('disabled'); |
2015 |
$(element).removeClass('disabled'); |
2015 |
$(element).removeClass('disabled'); |
2016 |
$(element).find('i.fa-spinner').first().replaceWith('<i class=\"fa fa-play\"></i>'); |
2016 |
$(element).find('i.fa').first().replaceWith('<i class=\"fa fa-play\"></i>'); |
2017 |
} |
2017 |
} |
2018 |
}); |
2018 |
}); |
2019 |
|
2019 |
|
Lines 2516-2522
Link Here
|
2516 |
}); |
2516 |
}); |
2517 |
|
2517 |
|
2518 |
$('#report_param_form').on('submit', event => { |
2518 |
$('#report_param_form').on('submit', event => { |
2519 |
const button = $('button[type="submit"]'); |
2519 |
const button = $('#report_param_form button[type="submit"]'); |
2520 |
|
2520 |
|
2521 |
if (button.length < 1) { |
2521 |
if (button.length < 1) { |
2522 |
return; |
2522 |
return; |
2523 |
- |
|
|