removing console log lines

This commit is contained in:
Brian McGonagill 2024-07-14 09:15:00 -05:00
parent dbd945391d
commit a118bf38fc
2 changed files with 0 additions and 6 deletions

View file

@ -18,8 +18,6 @@ Template.listsTbl.events({
'click li.collection-item' (event) {
event.preventDefault();
let sender = event.target;
// console.log("Sender origination from: ");
// console.log(sender.localName);
if (sender.localName == "li" || sender.localName == "span") {
let listId = event.currentTarget.id;
if (listId == "addList") {
@ -36,8 +34,6 @@ Template.listsTbl.events({
'click i.markAsComplete' (event) {
event.preventDefault();
let sender = event.target;
// console.log("Sender origination from: " );
// console.log(sender.localName);
if (sender.localName == "i") {
let listFullId = event.currentTarget.id;
let splitList = listFullId.split("_");