templator/js/posts.js

10 lines
385 B
JavaScript
Raw Normal View History

2022-12-07 00:07:56 +00:00
/*global $, dotclear */
'use strict';
$(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');
});