Skip to content

Commit

Permalink
Replace Prototype.js with native JavaScript (#69)
Browse files Browse the repository at this point in the history
  • Loading branch information
basil committed May 20, 2023
1 parent d3e86fc commit abe01f6
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/main/resources/hudson/ivy/IvyModuleSet/modules.jelly
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,10 @@ THE SOFTWARE.
<div>
<script>
function build(a) {
new Ajax.Request(a.href);
fetch(a.href, {
method: "post",
headers: crumb.wrap({}),
});
hoverNotification('${%Build scheduled}',a);
return false;
}
Expand Down

0 comments on commit abe01f6

Please sign in to comment.