diff --git a/web/app/static/js/modules/corpus_analysis/client/Client.js b/web/app/static/js/modules/corpus_analysis/client/Client.js index 7aac251d..b5b1bfdf 100644 --- a/web/app/static/js/modules/corpus_analysis/client/Client.js +++ b/web/app/static/js/modules/corpus_analysis/client/Client.js @@ -78,7 +78,7 @@ class Client { detailObject.notificationType = notificationType; detailObject.raiseModalFeedback = raiseModalFeedback; const event = new CustomEvent('notify-view', { detail: detailObject }); - console[notificationType]('Client dispatching Notification with detail object in details:', + console[notificationType]('Client dispatching Notification with details:', detailObject); document.dispatchEvent(event); } @@ -136,7 +136,7 @@ class Client { tmp_first_cpos.push(results.data.matches[dataIndex].c[0]); tmp_last_cpos.push(results.data.matches[dataIndex].c[1]); } - nopaque.socket.emit("corpus_analysis_get_match_with_full_context", + nopaque.socket.emit('corpus_analysis_get_match_with_full_context', {type: resultsType, data_indexes: dataIndexes, first_cpos: tmp_first_cpos, diff --git a/web/app/static/js/modules/corpus_analysis/client/callbacks.js b/web/app/static/js/modules/corpus_analysis/client/callbacks.js index 230cc195..34299505 100644 --- a/web/app/static/js/modules/corpus_analysis/client/callbacks.js +++ b/web/app/static/js/modules/corpus_analysis/client/callbacks.js @@ -81,7 +81,8 @@ function saveQueryData() { function getResultsData() { let [resultsType, dataIndexes, resultsList, client, results, rest] = arguments; client.isBusy = true; - if (resultsList.exportFullInspectContext.checked || resultsType === 'inspect-results') { + if (resultsList.exportFullInspectContext.checked + || resultsType === 'inspect-results') { console.info('Get results with full context'); client.getResultsData(resultsType, dataIndexes, results); } else {