Skip to content

Commit

Permalink
Fix jQuery 3.x issue (#155)
Browse files Browse the repository at this point in the history
  • Loading branch information
basil authored Nov 8, 2024
1 parent c66a39e commit aa0037d
Showing 1 changed file with 3 additions and 3 deletions.
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 aa0037d

Please sign in to comment.