Removed stray logging
This commit is contained in:
@@ -107,7 +107,6 @@
|
|||||||
let allowed = isParentAllowed({parentType, childType});
|
let allowed = isParentAllowed({parentType, childType});
|
||||||
return allowed;
|
return allowed;
|
||||||
},
|
},
|
||||||
log: console.log,
|
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
@@ -40,9 +40,6 @@
|
|||||||
searchString: '',
|
searchString: '',
|
||||||
testIcon: undefined,
|
testIcon: undefined,
|
||||||
}},
|
}},
|
||||||
mounted(){
|
|
||||||
console.log(this.$vuetify);
|
|
||||||
},
|
|
||||||
methods: {
|
methods: {
|
||||||
fileChanged (file) {
|
fileChanged (file) {
|
||||||
importIcons(file);
|
importIcons(file);
|
||||||
|
|||||||
@@ -119,9 +119,6 @@
|
|||||||
'toggleDrawer',
|
'toggleDrawer',
|
||||||
]),
|
]),
|
||||||
},
|
},
|
||||||
mounted(){
|
|
||||||
console.log(this.$route);
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|||||||
@@ -101,7 +101,6 @@ export default {
|
|||||||
selection: this.selection,
|
selection: this.selection,
|
||||||
},
|
},
|
||||||
callback: result => {
|
callback: result => {
|
||||||
console.log(result)
|
|
||||||
if (result){
|
if (result){
|
||||||
this.selected = id;
|
this.selected = id;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -29,7 +29,6 @@ export default {
|
|||||||
}},
|
}},
|
||||||
meteor: {
|
meteor: {
|
||||||
library(){
|
library(){
|
||||||
console.log(this.$route);
|
|
||||||
return Libraries.findOne(this.$route.params.id);
|
return Libraries.findOne(this.$route.params.id);
|
||||||
},
|
},
|
||||||
subscribed(){
|
subscribed(){
|
||||||
@@ -41,7 +40,6 @@ export default {
|
|||||||
let userId = Meteor.userId();
|
let userId = Meteor.userId();
|
||||||
let library = this.library;
|
let library = this.library;
|
||||||
if (!library) return;
|
if (!library) return;
|
||||||
console.log({library, userId});
|
|
||||||
if (
|
if (
|
||||||
library.readers.includes(userId) ||
|
library.readers.includes(userId) ||
|
||||||
library.writers.includes(userId) ||
|
library.writers.includes(userId) ||
|
||||||
@@ -55,10 +53,8 @@ export default {
|
|||||||
canEdit(){
|
canEdit(){
|
||||||
try {
|
try {
|
||||||
assertDocEditPermission(this.library, Meteor.userId());
|
assertDocEditPermission(this.library, Meteor.userId());
|
||||||
console.log('can edit');
|
|
||||||
return true
|
return true
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
console.log(e);
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -22,7 +22,6 @@ for (const name in SVG_ICONS) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
console.log(icons);
|
|
||||||
|
|
||||||
Vue.use(VueMeteorTracker);
|
Vue.use(VueMeteorTracker);
|
||||||
Vue.config.meteor.freeze = true
|
Vue.config.meteor.freeze = true
|
||||||
|
|||||||
Reference in New Issue
Block a user