Removed stray logging

This commit is contained in:
Stefan Zermatten
2020-05-31 22:36:27 +02:00
parent 21b823f85c
commit b04b915c7b
6 changed files with 0 additions and 13 deletions

View File

@@ -107,7 +107,6 @@
let allowed = isParentAllowed({parentType, childType}); let allowed = isParentAllowed({parentType, childType});
return allowed; return allowed;
}, },
log: console.log,
}, },
}; };
</script> </script>

View File

@@ -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);

View File

@@ -119,9 +119,6 @@
'toggleDrawer', 'toggleDrawer',
]), ]),
}, },
mounted(){
console.log(this.$route);
}
}; };
</script> </script>

View File

@@ -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;
} }

View File

@@ -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;
} }
} }

View File

@@ -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