Add check/times to messages

This commit is contained in:
Skylar Ittner 2017-12-26 23:20:25 -07:00
parent dbbea7b538
commit 40efe0409d

View File

@ -35,9 +35,9 @@ $(".card_qwikclock_punchinout").on("click", ".start_btn", function () {
action: "punchin"
}, function (resp) {
if (resp.status == "OK") {
showmsg(resp.msg, "success");
showmsg('<i class="fas fa-check"></i> ' + resp.msg, "success");
} else {
showmsg(resp.msg, "danger");
showmsg('<i class="fas fa-times"></i> ' + resp.msg, "danger");
}
}, "json");
});
@ -52,9 +52,9 @@ $(".card_qwikclock_punchinout").on("click", ".stop_btn", function () {
action: "punchout"
}, function (resp) {
if (resp.status == "OK") {
showmsg(resp.msg, "success");
showmsg('<i class="fas fa-check"></i> ' + resp.msg, "success");
} else {
showmsg(resp.msg, "danger");
showmsg('<i class="fas fa-times"></i> ' + resp.msg, "danger");
}
}, "json");
});