2021-10-21 20:22:02 +00:00
|
|
|
/*global $, dotclear */
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
$(function () {
|
2021-10-24 21:38:49 +00:00
|
|
|
$('#filters_menu input[type=submit]').hide();
|
|
|
|
$('#filters_menu #part').on('change', function () {this.form.submit();});
|
|
|
|
|
|
|
|
$('.checkboxes-helpers').each(function () {
|
|
|
|
dotclear.checkboxesHelpers(this, undefined, '#form-records td input[type=checkbox]', '#form-records #del-action');
|
2021-10-21 20:22:02 +00:00
|
|
|
});
|
2021-10-24 21:38:49 +00:00
|
|
|
$('#form-records td input[type=checkbox]').enableShiftClick();
|
|
|
|
dotclear.condSubmit('#form-records td input[type=checkbox]', '#form-records #del-action');
|
2021-10-21 20:22:02 +00:00
|
|
|
});
|