Answer the question
In order to leave comments, you need to log in
Problems with redirect in safari, nuxt?
let redirect = () => {
let url = ''
switch (this.$route.path) {
case `/${ this.locale }/befree`:
url = `love-republic`
break
case `/${ this.locale }/love-republic`:
url = `zarina`
break
case `/${ this.locale }/zarina`:
url = `sela`
break
case `/${ this.locale }/sela`:
url = `befree`
break
}
this.$router.replace({ path: `/${ this.locale }/${ url }` }) // redirect
}
$(window).scroll(function() {
if ($(window).scrollTop() >= $(document).height() - $(window).height()) {
redirect()
}
})
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question