Skip to content

Commit

Permalink
move select form prior to table and add th
Browse files Browse the repository at this point in the history
fixes #2939
  • Loading branch information
scottjehl authored Jun 28, 2023
1 parent 5d0819b commit cc2773a
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions www/resultBatch.inc
Original file line number Diff line number Diff line change
Expand Up @@ -244,17 +244,18 @@ function DisplayTests(&$tests)

if ($videoCaptured) {
echo "<form name=\"compare\" method=\"get\" action=\"/video/compare.php\">";
}
echo '<br><table class="pretty" border="1" cellpadding="10" cellspacing="0">
<tr>';
if ($videoCaptured) {

?>
<div class="history-controls">
<div class="history-controls">
<input id="CompareBtn" type="submit" value="Compare Selected Tests">
</div>
<?php
}
echo '<th>Test</th>
echo '<br><table class="pretty" border="1" cellpadding="10" cellspacing="0">
<tr>';

echo '<th>Select</th>
<th>Test</th>
<th>Median load time<br>(First view)</th>';
if (!$fvonly) {
echo '<th>Median load time<br>(Repeat view)</th>';
Expand Down

0 comments on commit cc2773a

Please sign in to comment.