fix submit conditions
This commit is contained in:
parent
8315eede38
commit
966366a92f
@ -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');
|
||||
})
|
@ -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?'),
|
||||
]) .
|
||||
|
Loading…
Reference in New Issue
Block a user