enhancePostContent/js/backend.js

13 lines
512 B
JavaScript
Raw Normal View History

2021-10-21 20:22:02 +00:00
/*global $, dotclear */
'use strict';
$(function () {
$('#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
});
$('#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
});