From: Mike Taylor Date: Wed, 22 Jan 2014 14:30:40 +0000 (+0000) Subject: Rename function to clarify intent. X-Git-Tag: 1.0.0~1670 X-Git-Url: http://jsfdemo.indexdata.com/?a=commitdiff_plain;h=6c3b7b4205ac5f08bba8838ea840801c03088312;hp=739c41467eb35a1d795165c8dd9cf30e70a10598;p=mkws-moved-to-github.git Rename function to clarify intent. --- diff --git a/tools/htdocs/mkws.js b/tools/htdocs/mkws.js index f7f324b..725754b 100644 --- a/tools/htdocs/mkws.js +++ b/tools/htdocs/mkws.js @@ -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; } @@ -1347,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);