diff --git a/src/components/DictionaryView.vue b/src/components/DictionaryView.vue index 8093fec9e33a58b8717f96ab2d1cf89f330c4108..f6564055996a3d516edc9b6311b46d40459505b4 100644 --- a/src/components/DictionaryView.vue +++ b/src/components/DictionaryView.vue @@ -168,7 +168,6 @@ function load_articles(self, query, offset, n, dict) { if (n > 0) { article_IDs = article_IDs.slice(offset, n) - console.log("ARTICLES", dict,article_IDs) return Promise.all(article_IDs.map((article_id) => { return axios.get(`${ARTICLE_ENDPOINT}${dict}/article/${article_id}.json`) @@ -285,7 +284,6 @@ export default { if (this.search_results.nn) { return this.search_results.nn.length } - console.log("TOTAL", total) return total } diff --git a/src/components/SearchResults.vue b/src/components/SearchResults.vue index f560eed809098909505fe6823e7435f6b6f3cc64..0a7370e814f8e166ff7c722e1099280754247c75 100644 --- a/src/components/SearchResults.vue +++ b/src/components/SearchResults.vue @@ -46,15 +46,12 @@ export default { return '' }, bm_hash: function(){ - console.log("HASH_B;") return this.results_bm.reduce((hash, hit) => (hash + hit.article_id) % 10000, 0) }, nn_hash: function(){ - console.log("HASH_NN") return this.results_nn.reduce((hash, hit) => (hash + hit.article_id) % 10000, 0) }, count_bm: function(){ - console.log(this.meta) return this.meta["bm"]["total"] }, count_nn: function(){