Skip to content

Commit

Permalink
[FIX JENKINS-15294] Showing Jenkins pop-up menu when hovering on the …
Browse files Browse the repository at this point in the history
…job link.
  • Loading branch information
mambu committed Oct 21, 2012
1 parent 9b98764 commit d37420b
Showing 1 changed file with 12 additions and 16 deletions.
28 changes: 12 additions & 16 deletions src/main/resources/hudson/plugins/view/dashboard/jobLink.jelly
Expand Up @@ -23,25 +23,21 @@ THE SOFTWARE.
-->

<j:jelly xmlns:j="jelly:core" xmlns:st="jelly:stapler" xmlns:d="jelly:define" xmlns:l="/lib/layout" xmlns:t="/lib/hudson" xmlns:f="/lib/form">
<st:documentation>
<st:documentation>
Generates a link to a job - same as lib/hudson/jobLink except uses job short url
<st:attribute name="job" type="hudson.model.Job" use="required">
<st:attribute name="job" type="hudson.model.Job" use="required">
Job object to be displayed.
</st:attribute>
</st:documentation>
</st:attribute>
</st:documentation>

<!--t:buildHealth job="${job}" td="false" style="${indenter.getRelativeShift(job)}" iconSize="16x16"
link="${jobBaseUrl}${job.shortUrl}lastBuild" /-->
<img src="${imagesURL}/16x16/${job.buildStatusUrl}"
alt="${job.iconColor.description}"
title="${job.iconColor.description}"/>
<img src="${imagesURL}/16x16/${job.buildHealth.iconUrl}"
alt="${job.buildHealth.description}"
title="${job.buildHealth.description}" />
<j:if test="${job.description != ''}">
<a href="${job.shortUrl}" tooltip="${job.description}">${job.displayName}</a>
</j:if>
<j:if test="${job.description == ''}">
<a href="${job.shortUrl}">${job.displayName}</a>
</j:if>
<img src="${imagesURL}/16x16/${job.buildStatusUrl}"
alt="${job.iconColor.description}"
title="${job.iconColor.description}"/>
<img src="${imagesURL}/16x16/${job.buildHealth.iconUrl}"
alt="${job.buildHealth.description}"
title="${job.buildHealth.description}" />
<!--t:jobLink job="${job}"/-->
<a href="${job.shortUrl}" class="model-link">${job.displayName}</a>
</j:jelly>

0 comments on commit d37420b

Please sign in to comment.