Compare commits

...

2 Commits

Author SHA1 Message Date
ecad8d90d6 Fix conditional indentation. Add vim modeline. 2025-09-30 14:09:44 -04:00
bd56aee162 Add error handling to jQuery AJAX calls 2025-09-29 10:58:38 -04:00
2 changed files with 35 additions and 11 deletions

View File

@ -51,4 +51,4 @@ if ( php_sapi_name() != "cli" ) {
// Make our PDO database connection which will be used in all scripts // Make our PDO database connection which will be used in all scripts
$globaldbh = new PDO("mysql:host=" . DBHOST . ";dbname=" . DBNAME, DBUSER, DBPASS); $globaldbh = new PDO("mysql:host=" . DBHOST . ";dbname=" . DBNAME, DBUSER, DBPASS);
?> // vim: sw=4 ts=4 et ai mouse-=a:

View File

@ -38,6 +38,10 @@ function getSortOrder(refresh = true) {
$("#sortorder").html(data.order); $("#sortorder").html(data.order);
if ( refresh ) getFolderContents(); if ( refresh ) getFolderContents();
} }
},
error : function(xhr, stat, err) {
console.log(xhr.status);
console.log(err);
} }
}); });
} }
@ -59,6 +63,10 @@ function cycleSortOrder() {
$("#sortorder").html(data.order); $("#sortorder").html(data.order);
getFolderContents(); getFolderContents();
} }
},
error : function(xhr, stat, err) {
console.log(xhr.status);
console.log(err);
} }
}); });
} }
@ -97,6 +105,10 @@ function getFolderContents() {
$(".folder").click(function() { changeFolder($(this).data("name"), $(this).data("path")); }); $(".folder").click(function() { changeFolder($(this).data("name"), $(this).data("path")); });
$(".issue").click(function() { $(this).parent().addClass("readborder"); showComic($(this).data("relcomic"), $(this).data("comname")); }); $(".issue").click(function() { $(this).parent().addClass("readborder"); showComic($(this).data("relcomic"), $(this).data("comname")); });
toastr.remove(); toastr.remove();
},
error : function(xhr, stat, err) {
console.log(xhr.status);
console.log(err);
} }
}); });
} }
@ -141,6 +153,10 @@ function changeFolder(name, path) {
foldername = data.foldername; foldername = data.foldername;
toastr.remove(); toastr.remove();
getFolderContents(); getFolderContents();
},
error : function(xhr, stat, err) {
console.log(xhr.status);
console.log(err);
} }
}); });
} }
@ -166,6 +182,10 @@ function updateCurrentPage() {
return; return;
} }
console.log(data.message); console.log(data.message);
},
error : function(xhr, stat, err) {
console.log(xhr.status);
console.log(err);
} }
}); });
} }
@ -196,6 +216,10 @@ function showComic(comic, name) {
startAt: data.startindex, startAt: data.startindex,
beforeSetContent: updateCurrentPage beforeSetContent: updateCurrentPage
}); });
},
error : function(xhr, stat, err) {
console.log(xhr.status);
console.log(err);
} }
}); });
} }