From 11500c147140ae2aade27ac169be11a4d609d959 Mon Sep 17 00:00:00 2001 From: Tobias Zeumer Date: Wed, 4 Jul 2018 22:37:34 +0200 Subject: [PATCH] Log user's search term if nothing is found; #34 (and #27) --- js/tubmap.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/js/tubmap.js b/js/tubmap.js index 3d963aa..0212b69 100644 --- a/js/tubmap.js +++ b/js/tubmap.js @@ -1040,6 +1040,9 @@ function search(input_value) { $("#modal-content").html(frameHTML); $("#modal").show(); + + // Log data to improve search field later + log('searchterm', input_value); } } -- GitLab