[web] Remove console logging

Console logging has been removed from all the pages.
This commit is contained in:
Alain Nussbaumer
2023-06-03 18:58:11 +02:00
parent fc5d284588
commit 6bf40c139d
4 changed files with 1 additions and 8 deletions

View File

@@ -163,9 +163,7 @@ export default {
}
},
mounted: function () {
console.log(this.$refs.slider)
},
mounted: function () {},
created() {
this.item_progress_ms = this.state.item_progress_ms
@@ -192,12 +190,10 @@ export default {
},
start_dragging: function () {
console.log('@start')
this.is_dragged = true
},
end_dragging: function () {
console.log('@end')
this.is_dragged = false
},