fix submit conditions

master
Jean-Christian Paul Denis 2023-04-29 22:07:20 +02:00
parent 8315eede38
commit 966366a92f
Signed by: JcDenis
GPG Key ID: 1B5B8C5B90B6C951
2 changed files with 6 additions and 5 deletions

View File

@ -1,16 +1,17 @@
/*global $, dotclear */
'use strict';
Object.assign(dotclear.msg, dotclear.getData('dclog_list'));
Object.assign(dotclear.msg, dotclear.getData('dcLog_msg'));
$(function(){
$('.checkboxes-helpers').each(function(){
dotclear.checkboxesHelpers(this)
});
$('input[name="del_logs"]').click(function(){
$('input[name="selected_logs"]').click(function(){
return window.confirm(dotclear.msg.confirm_delete_selected_log)
});
$('input[name="del_all_logs"]').click(function(){
$('input[name="all_logs"]').click(function(){
return window.confirm(dotclear.msg.confirm_delete_all_log)
})
dotclear.condSubmit('#dcLog_form td input[type=checkbox]', '#dcLog_form #selected_logs');
})

View File

@ -77,8 +77,8 @@ class Manage extends dcNsProcess
$current = ManageVars::init();
dcPage::openModule(
__('Pings'),
dcPage::jsJson('dclog_list', [
My::name(),
dcPage::jsJson('dcLog_msg', [
'confirm_delete_selected_log' => __('Are you sure you want to delete selected logs?'),
'confirm_delete_all_log' => __('Are you sure you want to delete all logs?'),
]) .