Add error handling to status.txt request

This commit is contained in:
Daniel Gröber 2018-08-06 17:32:54 +02:00
parent 33e53cda3d
commit a84e09c70f

View file

@ -47,7 +47,7 @@ var its = (function() {
function refresh() {
$.get('https://it-syndikat.org/api/status.txt')
.done(function(data) {
.then(function(data) {
var a = data.split(',');
var isitopen = a[0];
var up_date = new Date(parseInt(a[1]) * 1000);
@ -63,6 +63,9 @@ var its = (function() {
console.log('isitopen: it is', state);
update_dom(state);
}, function() {
console.log('isitopen: it is', 'error');
update_dom('error');
});
}