From f869d536eca69f90dad06f4cbc1ce6d59ecd0887 Mon Sep 17 00:00:00 2001 From: Mike Taylor Date: Tue, 11 Feb 2014 16:23:26 +0000 Subject: [PATCH] Move mkws.debug_function() lexically outside the team. --- tools/htdocs/mkws.js | 35 ++++++++++++++++++----------------- 1 file changed, 18 insertions(+), 17 deletions(-) diff --git a/tools/htdocs/mkws.js b/tools/htdocs/mkws.js index 0a29003..57d5606 100644 --- a/tools/htdocs/mkws.js +++ b/tools/htdocs/mkws.js @@ -171,23 +171,6 @@ function team($, teamName) { var m_paz; // will be initialised below - mkws.debug_function = function (string) { - if (!mkws.debug_level) - return; - - if (typeof console === "undefined" || typeof console.log === "undefined") { /* ARGH!!! old IE */ - return; - } - - // you need to disable use strict at the top of the file!!! - if (mkws.debug_level >= 3) { - console.log(arguments.callee.caller); - } else if (mkws.debug_level >= 2) { - console.log(">>> called from function " + arguments.callee.caller.name + ' <<<'); - } - console.log(string); - } - var debug = function (s) { var now = $.now(); var timestamp = ((now - m_debug_time.start)/1000).toFixed(3) + " (+" + ((now - m_debug_time.last)/1000).toFixed(3) + ") " @@ -1274,6 +1257,24 @@ function _mkws_jquery_plugin ($) { // wrapper to call team() after page load (function (j) { + mkws.debug_function = function (string) { + if (!mkws.debug_level) + return; + + if (typeof console === "undefined" || typeof console.log === "undefined") { /* ARGH!!! old IE */ + return; + } + + // you need to disable use strict at the top of the file!!! + if (mkws.debug_level >= 3) { + console.log(arguments.callee.caller); + } else if (mkws.debug_level >= 2) { + console.log(">>> called from function " + arguments.callee.caller.name + ' <<<'); + } + console.log(string); + } + + function log(s) { if (typeof console === "undefined" || typeof console.log === "undefined") { /* ARGH!!! old IE */ return; -- 1.7.10.4