Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,13 @@ THE SOFTWARE.
<?jelly escape-by-default='true'?>
<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">
<f:entry title="${%nodeJSInstallationName.title}" description="${%nodeJSInstallationName.description}">
<select class="setting-input" name="_.nodeJSInstallationName">
<j:forEach var="inst" items="${descriptor.installations}">
<f:option selected="${inst.name==instance.nodeJSInstallationName}">${inst.name}</f:option>
</j:forEach>
</select>
<div class="jenkins-select">
<select class="jenkins-select__input" name="_.nodeJSInstallationName">
<j:forEach var="inst" items="${descriptor.installations}">
<f:option selected="${inst.name==instance.nodeJSInstallationName}">${inst.name}</f:option>
</j:forEach>
</select>
</div>
</f:entry>

<f:entry title="${%configId.title}">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,14 @@ THE SOFTWARE.
<?jelly escape-by-default='true'?>
<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">
<f:entry title="${%nodeJSInstallationName.title}" description="${%nodeJSInstallationName.description}">
<select class="setting-input" name="_.nodeJSInstallationName">
<f:option value="">${%nodeJSInstallationName.emptyValue}</f:option>
<j:forEach var="inst" items="${descriptor.installations}">
<f:option selected="${inst.name==instance.nodeJSInstallationName}">${inst.name}</f:option>
</j:forEach>
</select>
<div class="jenkins-select">
<select class="jenkins-select__input" name="_.nodeJSInstallationName">
<f:option value="">${%nodeJSInstallationName.emptyValue}</f:option>
<j:forEach var="inst" items="${descriptor.installations}">
<f:option selected="${inst.name==instance.nodeJSInstallationName}">${inst.name}</f:option>
</j:forEach>
</select>
</div>
</f:entry>

<f:entry title="${%command.title}" description="See &lt;a href='${rootURL}/env-vars.html' target=_new>the list of available environment variables&lt;/a> accessible by process.env.ENV_VARIABLE.">
Expand Down