Skip to content
Snippets Groups Projects
Commit a07d4da9 authored by Henrik Askjer's avatar Henrik Askjer
Browse files

fix history bugs

parent 3feffe4c
No related branches found
No related tags found
No related merge requests found
...@@ -113,7 +113,7 @@ function navigate_to_article(self, source) { ...@@ -113,7 +113,7 @@ function navigate_to_article(self, source) {
}) })
.then(function(response){ .then(function(response){
self.waiting_for_articles = false self.waiting_for_articles = false
this.replace_history() self.replace_history()
if (source) { if (source) {
self.$plausible.trackEvent('internal link incoming', {props: {origin: source}}) self.$plausible.trackEvent('internal link incoming', {props: {origin: source}})
} }
...@@ -273,16 +273,18 @@ export default { ...@@ -273,16 +273,18 @@ export default {
}, },
methods: { methods: {
replace_history: function() { replace_history: function() {
history.replaceState({article: this.article, history.replaceState({article: this.article,
search_results: {}, search_results: this.search_results,
lang: this.lang, lang: this.lang,
error: null, error: this.error,
scope: this.scope, pos_selected: this.pos_selected,
article_info: this.article_info, scope: this.scope,
page: this.page, article_info: this.article_info,
perPage: this.perPage, page: this.page,
selected: this.selected, perPage: this.perPage,
inflection_suggestions: this.inflection_suggestions}, '') selected: this.selected,
inflection_suggestions: this.inflection_suggestions}, '')
}, },
total_results: function() { total_results: function() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment