zoneclearFeedServer/js/feed.js

9 lines
318 B
JavaScript
Raw Normal View History

2023-06-30 23:07:04 +00:00
/*global $, dotclear */
'use strict';
$(() => {
$('.checkboxes-helpers').each(function () {
dotclear.checkboxesHelpers(this, undefined, '#form-entries td input[type=checkbox]', '#form-entries #feed-action');
});
dotclear.condSubmit('#form-entries td input[type=checkbox]', '#form-entries #feed-action');
});