-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
JENKINS-73971 Extract event handlers in NestedViewsSearch/search-resu…
…lts.jelly
- Loading branch information
Showing
2 changed files
with
20 additions
and
2 deletions.
There are no files selected for viewing
5 changes: 3 additions & 2 deletions
5
src/main/resources/hudson/plugins/nested_view/NestedViewsSearch/search-results.jelly
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 17 additions & 0 deletions
17
src/main/resources/hudson/plugins/nested_view/NestedViewsSearch/searchscripts.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
// <![CDATA[ | ||
|
||
function nvwp_showHide_button_2_1_show() { | ||
document.getElementById('button_expand_2_1').style.display = 'none'; | ||
document.getElementById('button_collapse_2_1').style.display = 'inline'; | ||
document.getElementById('details_2_1').style.display = 'block'; | ||
return false; | ||
} | ||
function nvwp_showHide_button_2_1_hide() { | ||
document.getElementById('button_collapse_2_1').style.display = 'none'; | ||
document.getElementById('details_2_1').style.display = 'none'; | ||
document.getElementById('button_expand_2_1').style.display = 'inline'; | ||
return false; | ||
} | ||
|
||
// ]]> | ||
|