Navigation Menu

Skip to content

Commit

Permalink
[FIXED JENKINS-22311] Show queue item parameters in tool tip
Browse files Browse the repository at this point in the history
(cherry picked from commit 44e6b5d)
  • Loading branch information
daniel-beck authored and olivergondza committed Mar 2, 2015
1 parent bf6859f commit 56795ba
Showing 1 changed file with 6 additions and 2 deletions.
Expand Up @@ -40,7 +40,7 @@ THE SOFTWARE.
<l:icon class="icon-grey icon-sm"/>
</div>
<!-- Don't use math unless needed, in case nextBuildNumber is not numeric -->
<div class="display-name">
<div class="display-name" title="${%Expected build number}">
#${queuedItems.size()==1 ? it.owner.nextBuildNumber
: it.owner.nextBuildNumber+queuedItems.size()-i-1}
</div>
Expand All @@ -55,7 +55,11 @@ THE SOFTWARE.
(${%pending})
</j:otherwise>
</j:choose>
${item.params}
<j:if test="${!item.params.isEmpty()}">
<div style="float:right;margin-right:10px;">
<a href="#" tooltip="Build Parameters:${h.escape(item.params)}"><l:icon class="icon-notepad icon-sm" /></a>
</div>
</j:if>
</div>
<div class="pane build-controls">
<div class="build-stop">
Expand Down

0 comments on commit 56795ba

Please sign in to comment.