Skip to content

Commit

Permalink
Merge branch 'master' into JENKINS-74057
Browse files Browse the repository at this point in the history
  • Loading branch information
shlomomdahan authored Nov 8, 2024
2 parents affe348 + 313a0aa commit 7a86989
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 14 deletions.
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@
<properties>
<revision>2.0.3</revision>
<changelist>-SNAPSHOT</changelist>
<jenkins.version>2.414.3</jenkins.version>
<jenkins.version>2.452.3</jenkins.version>
<gitHubRepo>jenkinsci/${project.artifactId}</gitHubRepo>
<code.coverage.percentage>50</code.coverage.percentage>
<selenium.version>4.25.0</selenium.version>
<selenium.version>4.26.0</selenium.version>
<!-- TODO fix existing violations -->
<spotbugs.threshold>High</spotbugs.threshold>
</properties>
Expand All @@ -52,8 +52,8 @@
<dependencies>
<dependency>
<groupId>io.jenkins.tools.bom</groupId>
<artifactId>bom-2.414.x</artifactId>
<version>2982.vdce2153031a_0</version>
<artifactId>bom-2.452.x</artifactId>
<version>3010.vec758b_8e7da_3</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,5 @@
</f:entry>
</f:section>

<script type="text/javascript">
// dropdownDescriptorSelectors will fill items up but don't update the layout, so need
// to do that explicitly
setTimeout(function(){
layoutUpdateCallback.call();
}, 500);
</script>
<st:adjunct includes="au.com.centrumsystems.hudson.plugin.buildpipeline.BuildPipelineView.layoutUpdateCallback-call"/>
</j:jelly>
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
// dropdownDescriptorSelectors will fill items up but don't update the layout, so need
// to do that explicitly
setTimeout(function(){
layoutUpdateCallback.call();
}, 500);
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
<link href="${rootURL}/plugin/build-pipeline-plugin/css/main_dashboard.css" type="text/css" rel="stylesheet" />
<script type="text/javascript">
// show/hide build details
$(function() {
$(".header").click(function() {
var parent = $(this).parent();
jQuery(document).ready(function() {
jQuery(".header").click(function() {
var parent = jQuery(this).parent();
var ba = parent.find(".build-actions");
var bb = parent.find(".build-body");

Expand Down

0 comments on commit 7a86989

Please sign in to comment.