We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5733b1f commit 267ab8bCopy full SHA for 267ab8b
download.html
@@ -17,6 +17,7 @@
17
$(document).ready (function () {
18
$.getJSON("https://api.github.com/repos/su2code/SU2/releases/latest").done(function (data) {
19
$ ('#current_release').text ("Current Release: " + data.name);
20
+ $ ('#html_url').attr("href", data.html_url)
21
$ ('#zip_ball').attr("href", data.zipball_url)
22
$ ('#tar_ball').attr("href", data.tarball_url)
23
for (var key in data.assets) {
@@ -111,6 +112,7 @@ <h2>Binary Executables</h2>
111
112
113
<br>
114
<h3 id="current_release"></h3>
115
+ <h4>Release Notes can be found on the <a href="https://github.com/su2code/SU2/releases">releases page on Github</a></h4>
116
117
<table style='width:100%;font-size:100%;'>
118
<tr>
0 commit comments