Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #1856 from csimons/fix-js-syntax
[FIXED JENKINS-30569] HistoryWidget: fix JS syntax error
  • Loading branch information
oleg-nenashev committed Oct 6, 2015
2 parents 5b4b66d + 6cadf70 commit a14acf7
Showing 1 changed file with 5 additions and 3 deletions.
Expand Up @@ -101,7 +101,9 @@ THE SOFTWARE.
</tr>
</j:if>
</l:pane>
<script defer="true">
updateBuildHistory("${it.baseUrl}/buildHistory/ajax",${it.nextBuildNumberToFetch});
</script>
<j:if test="!empty(it.nextBuildNumberToFetch)">
<script defer="true">
updateBuildHistory("${it.baseUrl}/buildHistory/ajax", ${it.nextBuildNumberToFetch});
</script>
</j:if>
</j:jelly>

0 comments on commit a14acf7

Please sign in to comment.