Files
tomolino-processmaker/js/planning.js
tomolimo 96c6e9ba6f Version to 3.5.1
Compatible with GLPI 9.3
2019-05-21 10:47:15 +02:00

10 lines
395 B
JavaScript

$(function () {
$(document).ajaxComplete(function (event, jqXHR, ajaxOptions) {
//debugger;
if (!$('input[type="checkbox"][value="PluginProcessmakerTask"]').is(':checked')) {
$('input[type="checkbox"][value="PluginProcessmakerTask"]').trigger('click');
}
$('input[type="checkbox"][value="PluginProcessmakerTask"]').parents('li').first().hide();
});
});