mirror of
https://gitlab.com/bmcgonag/get_my.git
synced 2026-03-27 00:08:49 +00:00
Commenting out console logging.
This commit is contained in:
parent
4687f27011
commit
d25ef56591
31 changed files with 87 additions and 87 deletions
|
|
@ -26,12 +26,12 @@ Template.listsTbl.events({
|
|||
if (listId == "addList") {
|
||||
// opens the modal and allows you to add a new List
|
||||
} else {
|
||||
console.log("listId is: " + listId);
|
||||
// console.log("listId is: " + listId);
|
||||
Session.set("listId", listId);
|
||||
const addUserLast = async() => {
|
||||
let result = await Meteor.callAsync('add.userLast', "List", listId);
|
||||
if (!result) {
|
||||
console.log(" ERROR setting user last list id in db: " + err);
|
||||
// console.log(" ERROR setting user last list id in db: " + err);
|
||||
} else {
|
||||
setTimeout(function() {
|
||||
FlowRouter.go('/listitems');
|
||||
|
|
@ -53,7 +53,7 @@ Template.listsTbl.events({
|
|||
const markComp = async() => {
|
||||
let result = await Meteor.callAsync("mark.complete", listId);
|
||||
if (!result) {
|
||||
console.log(" ERROR marking list complete!");
|
||||
// console.log(" ERROR marking list complete!");
|
||||
showSnackbar("ERROR! List Not Makred Complete!", "red");
|
||||
} else {
|
||||
// console.log(" SUCCESS marking list complete.");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue