2021-10-25 20:43:01 +00:00
|
|
|
/*global $, dotclear */
|
|
|
|
'use strict';
|
|
|
|
|
2021-09-08 22:12:14 +00:00
|
|
|
$(function () {
|
|
|
|
$('.checkboxes-helpers').each(function () {
|
|
|
|
dotclear.checkboxesHelpers(this, undefined, '#form-entries td input[type=checkbox]', '#form-entries #do-action');
|
|
|
|
});
|
|
|
|
$('#form-entries td input[type=checkbox]').enableShiftClick();
|
|
|
|
dotclear.condSubmit('#form-entries td input[type=checkbox]', '#form-entries #do-action');
|
|
|
|
dotclear.postsActionsHelper();
|
|
|
|
dotclear.responsiveCellHeaders(document.querySelector('#form-entries table'), '#form-entries table', 1);
|
|
|
|
});
|