From: Mike Taylor Date: Fri, 7 Feb 2014 15:41:52 +0000 (+0000) Subject: Remove now-redundant "for teamName" from logging invocations. X-Git-Tag: 1.0.0~1502^2~13 X-Git-Url: http://git.indexdata.com/?p=mkws-moved-to-github.git;a=commitdiff_plain;h=8e138fcabd32edbdf3864985834979e1239a9fe1 Remove now-redundant "for teamName" from logging invocations. --- diff --git a/tools/htdocs/mkws.js b/tools/htdocs/mkws.js index e9624f6..adf6f6e 100644 --- a/tools/htdocs/mkws.js +++ b/tools/htdocs/mkws.js @@ -250,14 +250,14 @@ function team($, teamName) { // pz2.js event handlers: // function my_oninit(teamName) { - debug("init for " + teamName); + debug("init"); m_paz.stat(); m_paz.bytarget(); } function my_onshow(data, teamName) { - debug("show for " + teamName); + debug("show"); m_totalRec = data.merged; // move it out var pager = document.getElementById("mkwsPager"); @@ -298,7 +298,7 @@ function team($, teamName) { function my_onstat(data, teamName) { - debug("stat for " + teamName); + debug("stat"); var stat = $('.mkwsStat.mkwsTeam_' + teamName); if (stat.length === 0) return; @@ -312,7 +312,7 @@ function team($, teamName) { function my_onterm(data, teamName) { - debug("term for " + teamName); + debug("term"); var node = $(".mkwsTermlists.mkwsTeam_" + teamName); if (node.length == 0) return; @@ -369,7 +369,7 @@ function team($, teamName) { function my_onrecord(data, args, teamName) { - debug("record for " + teamName); + debug("record"); // FIXME: record is async!! clearTimeout(m_paz.recordTimer); // in case on_show was faster to redraw element @@ -383,7 +383,7 @@ function team($, teamName) { function my_onbytarget(data, teamName) { - debug("target for " + teamName); + debug("target"); var targetDiv = $('.mkwsBytarget.mkwsTeam_' + teamName); if (!targetDiv) { return;