remove title from image duplicate with popover

git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@1233597 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Olivier Lamy 2012-01-19 22:10:32 +00:00
parent 317cf9e4ce
commit db512f6a26
2 changed files with 4 additions and 3 deletions

View File

@ -350,7 +350,8 @@ $(function() {
$("#managedrepository-stats-img-"+curRepo.id()).popover(
{
placement: "left",
html: true
html: true,
title: "popover-title"
}
);
//$(calculatePopoverId(managedRepository)).show();

View File

@ -67,7 +67,7 @@
<th>Releases</th>
<th>Snapshots</th>
<th>Scan</th>
<th>Stats</th>
<th title="${$.i18n.prop('managedrepository.stats')}">Stats</th>
<th>${$.i18n.prop('edit')}</th>
<th>${$.i18n.prop('delete')}</th>
</tr>
@ -99,7 +99,7 @@
</a>
</td>
<td id="managedrepository-stats-${row.id()}">
<img src="images/utilities-system-monitor.png" title="${$.i18n.prop('managedrepository.stats')}"
<img src="images/utilities-system-monitor.png" popover-title="${$.i18n.prop('managedrepository.stats')}"
data-bind="event: { mouseover: function(){ showStats(row) }, mouseout: function(){ hideStats(row) },}"
id="managedrepository-stats-img-${row.id()}"/>
</td>