浏览代码

Merge rules.

Lauri Ojansivu 6 年之前
父节点
当前提交
b3a752ef34

+ 0 - 2
client/components/lists/listBody.js

@@ -98,8 +98,6 @@ BlazeComponent.extendComponent({
       evt.preventDefault();
       Utils.goBoardId(Session.get('currentBoard'));
     }
-    console.log(evt)
-
   },
 
   cardIsSelected() {

+ 2 - 2
client/components/rules/rulesActions.js

@@ -37,7 +37,7 @@ BlazeComponent.extendComponent({
   },
 
   name() {
-    console.log(this.data());
+    // console.log(this.data());
   },
   events() {
     return [{
@@ -55,4 +55,4 @@ BlazeComponent.extendComponent({
       },
     }];
   },
-}).register('rulesActions');
+}).register('rulesActions');

+ 0 - 1
client/lib/popup.js

@@ -83,7 +83,6 @@ window.Popup = new class {
       // our internal dependency, and since we just changed the top element of
       // our internal stack, the popup will be updated with the new data.
       if (!self.isOpen()) {
-        console.log(self.template)
         self.current = Blaze.renderWithData(self.template, () => {
           self._dep.depend();
           return { ...self._getTopStack(), stack: self._stack };

+ 0 - 1
client/lib/utils.js

@@ -145,7 +145,6 @@ Utils = {
     });
   },
 
-<<<<<<< HEAD
   setMatomo(data){
     window._paq = window._paq || [];
     window._paq.push(['setDoNotTrack', data.doNotTrack]);

+ 0 - 6
models/cards.js

@@ -933,8 +933,6 @@ Cards.mutations({
     }
   },
 
-<<<<<<< HEAD
-=======
   assignMember(memberId) {
     return {
       $addToSet: {
@@ -959,7 +957,6 @@ Cards.mutations({
     }
   },
 
->>>>>>> 36c04edb9f7cf16fb450b76598c4957968d4674b
   assignCustomField(customFieldId) {
     return {
       $addToSet: {
@@ -1020,8 +1017,6 @@ Cards.mutations({
     };
   },
 
-<<<<<<< HEAD
-=======
   setReceived(receivedAt) {
     return {
       $set: {
@@ -1111,7 +1106,6 @@ Cards.mutations({
     };
   },
 
->>>>>>> 36c04edb9f7cf16fb450b76598c4957968d4674b
   setParentId(parentId) {
     return {
       $set: {

+ 0 - 1
models/checklistItems.js

@@ -115,7 +115,6 @@ function publishCheckActivity(userId,doc){
     checklistItemId: doc._id,
     checklistItemName:doc.title
   }
-  console.log(act);
   Activities.insert(act);
 }