Removed console.log calls

This commit is contained in:
Eliot Berriot 2018-04-18 18:54:30 +02:00
parent c1b8180fce
commit 0213ec6d02
No known key found for this signature in database
GPG key ID: DD6965E2476E5C27
4 changed files with 1 additions and 4 deletions

View file

@ -35,7 +35,7 @@ Vue.use(VueMasonryPlugin)
Vue.use(VueLazyload)
Vue.config.productionTip = false
Vue.directive('title', {
inserted: (el, binding) => { console.log(binding.value); document.title = binding.value + ' - Funkwhale' },
inserted: (el, binding) => { document.title = binding.value + ' - Funkwhale' },
updated: (el, binding) => { document.title = binding.value + ' - Funkwhale' }
})