33
0
mirror of https://github.com/joomla-extensions/patchtester.git synced 2025-01-23 23:28:24 +00:00

Merge pull request #34 from n9iels/master

Change info icon to bootstrap icon
This commit is contained in:
Michael Babker 2014-09-01 13:27:48 -04:00
commit 713e7d0df8

View File

@ -8,6 +8,8 @@
defined('_JEXEC') or die;
JHtml::_('behavior.tooltip');
/** @type PatchtesterViewPulls $this */
foreach ($this->items as $i => $item) :
@ -26,9 +28,9 @@ foreach ($this->items as $i => $item) :
<?php echo $this->escape($item->title); ?>
</a>
</td>
<td>
<td class="center">
<?php if ($item->description) :
echo JHtml::_('tooltip', htmlspecialchars($item->description), 'Info');
echo JHtml::tooltip(htmlspecialchars($item->description), '', '', '<i class="icon-info"></i>');
else :
echo '&nbsp;';
endif;