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
|
|
@ -44,7 +44,7 @@ Template.listItemsTbl.events({
|
|||
if (itemInfo.itemOrdered == true) {
|
||||
Meteor.call('setNotOrdered.listItem', this._id, function(err, result) {
|
||||
if (err) {
|
||||
console.log(" ERROR setting this item as NOT ordered: " + err);
|
||||
// console.log(" ERROR setting this item as NOT ordered: " + err);
|
||||
} else {
|
||||
// console.log(" SUCCESS setting this item as NOT ordered.");
|
||||
}
|
||||
|
|
@ -52,7 +52,7 @@ Template.listItemsTbl.events({
|
|||
} else {
|
||||
Meteor.call('setOrdered.listItem', this._id, function(err, result) {
|
||||
if (err) {
|
||||
console.log(" ERROR marking item ordered: " + err);
|
||||
// console.log(" ERROR marking item ordered: " + err);
|
||||
} else {
|
||||
// console.log(" SUCCESS marking this item ordered.");
|
||||
}
|
||||
|
|
@ -63,7 +63,7 @@ Template.listItemsTbl.events({
|
|||
event.preventDefault();
|
||||
Meteor.call('setReceived.listItem', this._id, function(err, result) {
|
||||
if (err) {
|
||||
console.log(" ERROR setting item as received: " + err);
|
||||
// console.log(" ERROR setting item as received: " + err);
|
||||
} else {
|
||||
// console.log(" SUCCESS setting item received.");
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue