zoneclearFeedServer/js/feeds.js

9 lines
312 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-feeds td input[type=checkbox]', '#form-feeds #feeds-action');
});
dotclear.condSubmit('#form-feeds td input[type=checkbox]', '#form-feeds #feeds-action');
});