aboutsummaryrefslogtreecommitdiffstats
path: root/web/js/nms-oplog.js
diff options
context:
space:
mode:
authorKristian Lyngstol <kristian@bohemians.org>2016-05-25 23:27:51 +0200
committerKristian Lyngstol <kristian@bohemians.org>2016-05-25 23:27:51 +0200
commit6b888adedb3932df8bd7a4c7bc694cbaacc37f78 (patch)
tree362ff09e9a1549f8619ea6bf32cb347ecc3944c3 /web/js/nms-oplog.js
parenteb6b95252acfabf21ac3a30b97b334473c246dff (diff)
front: Remove some old console.log() remnants
KEK
Diffstat (limited to 'web/js/nms-oplog.js')
-rw-r--r--web/js/nms-oplog.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/js/nms-oplog.js b/web/js/nms-oplog.js
index 13cfdbf..372183e 100644
--- a/web/js/nms-oplog.js
+++ b/web/js/nms-oplog.js
@@ -65,7 +65,7 @@ nmsOplog._updateComments = function(limit,prefix,timefield) {
td1.textContent = nmsData['oplog']['oplog'][v][timefield];
td2.textContent = "[" + nmsData['oplog']['oplog'][v]['username'] + "] " + nmsData['oplog']['oplog'][v]['log'];
td2.hiddenthing = v;
- td2.onclick = function(e){ console.log(e); var x = document.getElementById("searchbox"); var v = e.path[0].hiddenthing; console.log("KEK" + v); x.value = nmsData['oplog']['oplog'][v]['systems']; x.oninput(); }
+ td2.onclick = function(e){ var x = document.getElementById("searchbox"); var v = e.path[0].hiddenthing; x.value = nmsData['oplog']['oplog'][v]['systems']; x.oninput(); }
if (++i == limit)
break;
}