Skip to content

Commit

Permalink
FIX: Linked Contacts Table Tooltip Titles - only shown when hovering …
Browse files Browse the repository at this point in the history
…the text, not the full cell
  • Loading branch information
aljawaid committed Jul 2, 2023
1 parent 5b25cf3 commit b17118d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Template/task/link-contacts.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,24 +41,24 @@
<!-- Arrow DOWN Button -->
<?= $this->url->link('<i class="fa fa-arrow-down" aria-hidden="true"></i>', 'ContactsController', 'removeFromTask', array('contacts_id' => $value['contacts_id'], 'project_id' => $project['id'], 'task_id' => $task['id'], 'plugin' => 'AddressBook'), false, 'btn delink-btn', t('Delink this contact from this task')) ?>
</td>
<td class="contacts-table-value" title="">
<td class="contacts-table-value">
<?php foreach ($values as $array_key => $array_value): ?>
<?php if (current($values[$array_key]) && ($values[$array_key]['position'] == 1)): ?>
<?= $values[$array_key]['contact_item_value'] ?>
<span title="<?= $values[$array_key]['contact_item_value'] ?>"><?= $values[$array_key]['contact_item_value'] ?></span>
<?php endif ?>
<?php endforeach ?>
</td>
<td class="contacts-table-value" title="">
<td class="contacts-table-value">
<?php foreach ($values as $array_key => $array_value): ?>
<?php if (current($values[$array_key]) && ($values[$array_key]['position'] == 2)): ?>
<?= $values[$array_key]['contact_item_value'] ?>
<span title="<?= $values[$array_key]['contact_item_value'] ?>"><?= $values[$array_key]['contact_item_value'] ?></span>
<?php endif ?>
<?php endforeach ?>
</td>
<td class="contacts-table-value" title="">
<td class="contacts-table-value">
<?php foreach ($values as $array_key => $array_value): ?>
<?php if (current($values[$array_key]) && ($values[$array_key]['position'] == 3)): ?>
<?= $values[$array_key]['contact_item_value'] ?>
<span title="<?= $values[$array_key]['contact_item_value'] ?>"><?= $values[$array_key]['contact_item_value'] ?></span>
<?php endif ?>
<?php endforeach ?>
</td>
Expand Down

0 comments on commit b17118d

Please sign in to comment.