mirror of
https://github.com/shouptech/tempgopher.git
synced 2026-02-03 08:39:43 +00:00
9 lines
288 B
JavaScript
9 lines
288 B
JavaScript
function renderVersion() {
|
|
$.ajax({
|
|
url: jsconfig.baseurl + "/api/version"
|
|
}).then(function(data) {
|
|
var versionText = "TempGopher © 2018 Mike Shoup | Version: " + data.version;
|
|
$("#version").text(versionText);
|
|
});
|
|
};
|
|
$(document).ready(renderVersion);
|