Rename function to clarify intent.
[mkws-moved-to-github.git] / tools / htdocs / mkws.js
index 0dc511f..725754b 100644 (file)
@@ -14,12 +14,12 @@ if (mkws_config == null || typeof mkws_config != 'object') {
 }
 
 // wrapper for jQuery lib
-function _mkws($) {
-    // if (console && console.log) console.log("run _mkws()");
+function _make_mkws_team($) {
+    // if (console && console.log) console.log("run _make_mkws_team()");
 
     // call this function only once
     if (mkws.init) {
-       alert("_mkws() called twice: how did that happen?!");
+       alert("_make_mkws_team() called twice: how did that happen?!");
        return;
     }
 
@@ -1210,9 +1210,16 @@ function M(word) {
  * implement jQuery plugin $.pazpar2({})
  */
 function _mkws_jquery_plugin ($) {
-    // delayed debug, internal variables are set after dom ready
+    var debug_level = 1;
+
     function debug (string) {
-       setTimeout(function() { mkws.debug_function(string); }, 500);
+       if (!debug_level)
+           return;
+
+       if (typeof console === "undefined" || typeof console.log === "undefined")
+           return;
+
+       console.log("jquery.pazpar2: " + string);
     }
 
     function init_popup(obj) {
@@ -1340,13 +1347,13 @@ function _mkws_jquery_plugin ($) {
 });
 };
 
-// wrapper to call _mkws after page load
+// wrapper to call _make_mkws_team() after page load
 (function (j) {
     // enable before page load, so we could call it before mkws() runs
     _mkws_jquery_plugin(j);
 
     $(document).ready(function() {
        // if (console && console.log) console.log("on load ready");
-       _mkws(j);
+       _make_mkws_team(j);
     });
 })(jQuery);