Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
shlomomdahan committed Oct 31, 2024
1 parent b2f77e2 commit abc0745
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -184,4 +184,18 @@
</j:forEach>
</div>
</form>
<script type="text/javascript">
console.log("main_dashboard.jelly");
// show/hide build details
jQuery(function() {
jQuery(".header").click(function() {
console.log("header clicked");
var parent = jQuery(this).parent();
var ba = parent.find(".build-actions");
var bb = parent.find(".build-body");

ba.add(bb).toggle('slow');
});
});
</script>
</j:jelly>
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
<script type="text/javascript">
console.log("main_dashboard.jelly");
// show/hide build details
$(function() {
$(".header").click(function() {
var parent = $(this).parent();
jQuery(function() {
jQuery(".header").click(function() {
var parent = jQuery(this).parent();
var ba = parent.find(".build-actions");
var bb = parent.find(".build-body");

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@
{{else}}
{{project.name}}
{{/if}}
</a>
</a>
<!-- </div>-->
</div>
<div class="build-info">
<ul>
Expand Down

0 comments on commit abc0745

Please sign in to comment.