mirror of
https://github.com/tim-krehan/shopping-list.git
synced 2024-11-23 22:30:41 +01:00
fixed error popup not showing up
This commit is contained in:
parent
287da38f69
commit
147d5edb22
2 changed files with 2 additions and 2 deletions
|
@ -102,15 +102,14 @@ function changeListItem(){
|
|||
|
||||
function checkItem() {
|
||||
var dataId = $(this).data("id");
|
||||
var dataIdSelector = (`[data-id='${dataId}']`);
|
||||
$.post({
|
||||
url: "api/list/check",
|
||||
data: {
|
||||
// function: "check",
|
||||
id: dataId,
|
||||
status: $(this).prop("checked")
|
||||
},
|
||||
success: function () {
|
||||
var dataIdSelector = (`[data-id='${dataId}']`);
|
||||
var color = $(dataIdSelector).data("color");
|
||||
$(dataIdSelector).parent().parent().removeClass("bg-danger");
|
||||
$(dataIdSelector).parent().parent().find(".dropdown-menu-button").removeClass("btn-danger");
|
||||
|
|
|
@ -6,6 +6,7 @@
|
|||
$passwd = $CONFIG['passwd'],
|
||||
$database = $CONFIG['database']
|
||||
);
|
||||
$mysqli->set_charset("utf8");
|
||||
if (!is_null($mysqli->connect_error))
|
||||
{
|
||||
header("Location: /error/DBConnFailed");
|
||||
|
|
Loading…
Reference in a new issue