Skip to content

Commit

Permalink
added console.log for testing purpose
Browse files Browse the repository at this point in the history
  • Loading branch information
sumandari committed Jan 20, 2022
1 parent 32fce95 commit 247dfc3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 36 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ function archiveChecklist() {
type: "POST",
data: JSON.stringify(checklist),
success: function (response) {
console.log(response);
if($('#archive-saved').is(":visible"))
{
$('#archive-saved').hide();
Expand Down Expand Up @@ -60,6 +61,7 @@ function activateChecklist() {
type: "POST",
data: JSON.stringify(checklist),
success: function (response) {
console.log(response);
if($('#archive-saved').is(":visible"))
{
$('#archive-saved').hide();
Expand Down

This file was deleted.

0 comments on commit 247dfc3

Please sign in to comment.