Skip to content

Commit

Permalink
Dev: column count in dual scale : fix header
Browse files Browse the repository at this point in the history
  • Loading branch information
Shnoulle committed Nov 14, 2016
1 parent 0d7843a commit f6b7a71
Showing 1 changed file with 6 additions and 1 deletion.
Expand Up @@ -12,13 +12,19 @@
?>
<tr class="ls-heading header_row <?php echo $class; ?>" aria-hidden="true">
<td class="header_answer_text"></td>
<?php if ($leftheader != '' || $rightheader !=''): ?>
<td class="hidden"></td>
<?php endif; ?>
<?php foreach ($labelans0 as $ld): ?>
<th class=''><?php echo $ld; ?></th>
<?php endforeach; ?>
<?php if (count($labelans1) > 0): ?>
<td class="header_separator"><?php if ($shownoanswer): ?>
<div class="ls-js-hidden"><?php eT('No answer'); ?></div>
<?php endif; ?></td> <!-- Separator : and No answer for accessibility for first colgroup -->
<?php if ($leftheader != '' || $rightheader !=''): ?>
<td class="hidden"></td>
<?php endif; ?>
<?php foreach ($labelans1 as $ld): ?>
<th class=''><?php echo $ld; ?></th>
<?php endforeach; ?>
Expand All @@ -29,5 +35,4 @@
<?php if ($shownoanswer): ?>
<th class="header_no_answer"><?php eT('No answer'); ?></th>
<?php endif; ?>

</tr>

0 comments on commit f6b7a71

Please sign in to comment.