Files
Froxlor/templates/Froxlor/src/js/components/updatecheck.js
Michael Kaufmann bd1e5c83e6 fix tablelisting in customer_extras; formatting js files
Signed-off-by: Michael Kaufmann <d00p@froxlor.org>
2022-02-28 13:57:53 +01:00

19 lines
503 B
JavaScript

$(document).ready(function () {
/*
* updatecheck
*/
if (document.getElementById('updatecheck')) {
$.ajax({
url: "lib/ajax.php?action=updatecheck&theme=" + window.$theme + "&s=" + window.$session,
type: "GET",
success: function (data) {
$("#updatecheck").html(data);
},
error: function (request, status, error) {
console.log(request, status, error)
$("#updatecheck").html('<div class="alert alert-warning" role="alert">Error checking version</div>');
}
});
}
});