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

Comment out unused code

parent 2c4fa360
No related branches found
No related tags found
No related merge requests found
......@@ -63,6 +63,7 @@
if (item) {
if (typeof item != 'string') {
let self = this
/*
if (item.articles) {
axios.get(self.endpoint + 'articles?', {params: {lord: item.match,
dict: self.$parent.lang}})
......@@ -80,6 +81,7 @@
}
)
}
*/
this.items = []
this.suggesting = false
......
......@@ -205,11 +205,14 @@ export default {
if(event.articles){
let source = '/' + this.lang + '/w/' + event.match
this.$router.push(source)
/*
this.search_results = event.articles.map(a => Object.assign(a, {source: source}))
this.article = null
this.error = null
this.waiting_for_articles = true
history.replaceState({article: this.article, search_results: this.search_results, lang: this.lang, error: this.error}, '')
*/
this.waiting_for_articles = true
navigate_to_word(this, event.match)
this.$plausible.trackEvent('dropdown selection', {props: {query: event.q, match: event.match}})
}else{
......
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