* Adjust codes.
This commit is contained in:
@@ -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);
|
||||
|
||||
@@ -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') + '"]');
|
||||
}
|
||||
|
||||
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user