Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[FIXED JENKINS-22311] Show queue item parameters in tool tip
  • Loading branch information
daniel-beck committed Dec 20, 2014
1 parent 7f36c3f commit 44e6b5d
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 44e6b5d

Please sign in to comment.