* Adjust codes.

This commit is contained in:
曹延义
2022-10-09 14:48:37 +08:00
parent 0b55fb4095
commit dc6b265503
3 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -72,7 +72,7 @@ $(function()
}
});
// Update table summary text
/* Update table summary text. */
$('#executionsForm').table(
{
statisticCreator: function(table)
@@ -89,7 +89,7 @@ $(function()
$rows.each(function()
{
var $row = $(this);
if ($originTable) $row = $originTable.find('tbody>tr[data-id="' + $row.data('id') + '"]');
if($originTable) $row = $originTable.find('tbody>tr[data-id="' + $row.data('id') + '"]');
var data = $row.data();
executionIDList.push(data.id);
+2 -2
View File
@@ -403,7 +403,7 @@ body {margin-bottom: 25px;}
<script>
$(function()
{
// Update table summary text
/* Update table summary text. */
var checkedSummary = '<?php echo $lang->execution->checkedSummary?>';
var pageSummary = '<?php echo $lang->execution->pageSummary?>';
$('#executionTaskForm').table(
@@ -425,7 +425,7 @@ $(function()
$rows.each(function()
{
var $row = $(this);
if ($originTable)
if($originTable)
{
$row = $originTable.find('tbody>tr[data-id="' + $row.data('id') + '"]');
}
+2 -2
View File
@@ -86,7 +86,7 @@ $(function()
$('#executionsForm .checkAll').prop('checked', false);
}, 10);
// Update table summary text
/* Update table summary text. */
$('#executionForm').table(
{
statisticCreator: function(table)
@@ -103,7 +103,7 @@ $(function()
$rows.each(function()
{
var $row = $(this);
if ($originTable) $row = $originTable.find('tbody>tr[data-id="' + $row.data('id') + '"]');
if($originTable) $row = $originTable.find('tbody>tr[data-id="' + $row.data('id') + '"]');
var data = $row.data();
executionIDList.push(data.id);