[web] Remove never called method

The method scrollToTop was a relic of the past and has been removed. The scrolling is now done in ContentWithHeading.
This commit is contained in:
Alain Nussbaumer 2023-06-04 15:59:21 +02:00
parent a1046f3913
commit f454e9229e
1 changed files with 0 additions and 6 deletions

View File

@ -190,12 +190,6 @@ export default {
this.$store.commit(types.HIDE_SPOTIFY, value)
}
}
},
methods: {
scrollToTop: function () {
window.scrollTo({ top: 0, behavior: 'smooth' })
}
}
}
</script>