[web] Remove console logging
Console logging has been removed from all the pages.
This commit is contained in:
parent
fc5d284588
commit
6bf40c139d
|
@ -93,7 +93,6 @@ export default {
|
||||||
this.timerId = -1
|
this.timerId = -1
|
||||||
|
|
||||||
const newValue = this.$refs.setting.checked
|
const newValue = this.$refs.setting.checked
|
||||||
console.log(this.$refs.setting)
|
|
||||||
if (newValue === this.value) {
|
if (newValue === this.value) {
|
||||||
this.statusUpdate = ''
|
this.statusUpdate = ''
|
||||||
return
|
return
|
||||||
|
|
|
@ -163,9 +163,7 @@ export default {
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
mounted: function () {
|
mounted: function () {},
|
||||||
console.log(this.$refs.slider)
|
|
||||||
},
|
|
||||||
|
|
||||||
created() {
|
created() {
|
||||||
this.item_progress_ms = this.state.item_progress_ms
|
this.item_progress_ms = this.state.item_progress_ms
|
||||||
|
@ -192,12 +190,10 @@ export default {
|
||||||
},
|
},
|
||||||
|
|
||||||
start_dragging: function () {
|
start_dragging: function () {
|
||||||
console.log('@start')
|
|
||||||
this.is_dragged = true
|
this.is_dragged = true
|
||||||
},
|
},
|
||||||
|
|
||||||
end_dragging: function () {
|
end_dragging: function () {
|
||||||
console.log('@end')
|
|
||||||
this.is_dragged = false
|
this.is_dragged = false
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
|
@ -288,7 +288,6 @@ export const router = createRouter({
|
||||||
],
|
],
|
||||||
scrollBehavior(to, from, savedPosition) {
|
scrollBehavior(to, from, savedPosition) {
|
||||||
const wait_ms = 0
|
const wait_ms = 0
|
||||||
// console.log(to.path + '_' + from.path + '__' + to.hash + ' savedPosition:' + savedPosition)
|
|
||||||
if (savedPosition) {
|
if (savedPosition) {
|
||||||
// We have saved scroll position (browser back/forward navigation), use this position
|
// We have saved scroll position (browser back/forward navigation), use this position
|
||||||
return new Promise((resolve, reject) => {
|
return new Promise((resolve, reject) => {
|
||||||
|
|
|
@ -9,7 +9,6 @@ axios.interceptors.response.use(
|
||||||
return response
|
return response
|
||||||
},
|
},
|
||||||
function (error) {
|
function (error) {
|
||||||
console.log(i18n)
|
|
||||||
if (error.request.status && error.request.responseURL) {
|
if (error.request.status && error.request.responseURL) {
|
||||||
store.dispatch('add_notification', {
|
store.dispatch('add_notification', {
|
||||||
text: t('server.request-failed', {
|
text: t('server.request-failed', {
|
||||||
|
|
Loading…
Reference in New Issue