Skip to content

Commit 713e7d0

Browse files
committed
Merge pull request #34 from n9iels/master
Change info icon to bootstrap icon
2 parents 0fe1125 + 7681705 commit 713e7d0

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

administrator/components/com_patchtester/views/pulls/tmpl/default_items.php

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88

99
defined('_JEXEC') or die;
1010

11+
JHtml::_('behavior.tooltip');
12+
1113
/** @type PatchtesterViewPulls $this */
1214

1315
foreach ($this->items as $i => $item) :
@@ -26,9 +28,9 @@
2628
<?php echo $this->escape($item->title); ?>
2729
</a>
2830
</td>
29-
<td>
31+
<td class="center">
3032
<?php if ($item->description) :
31-
echo JHtml::_('tooltip', htmlspecialchars($item->description), 'Info');
33+
echo JHtml::tooltip(htmlspecialchars($item->description), '', '', '<i class="icon-info"></i>');
3234
else :
3335
echo '&nbsp;';
3436
endif;

0 commit comments

Comments
 (0)