From: Mike Taylor Date: Fri, 24 Jan 2014 08:32:15 +0000 (+0000) Subject: For now, don't make the "AUTO" team. Allows jasmine-popup.html to work. X-Git-Tag: 1.0.0~1622 X-Git-Url: http://sru.miketaylor.org.uk/cgi-bin?a=commitdiff_plain;h=81cf6edc4df5d98db956d4608c274852f3fb56e4;p=mkws-moved-to-github.git For now, don't make the "AUTO" team. Allows jasmine-popup.html to work. --- diff --git a/tools/htdocs/mkws.js b/tools/htdocs/mkws.js index 67fb2fb..90da742 100644 --- a/tools/htdocs/mkws.js +++ b/tools/htdocs/mkws.js @@ -1441,6 +1441,9 @@ function _mkws_jquery_plugin ($) { alert("No MKWS team specified for mkwsRecords element with classes '" + classes + "'"); } else if (mkws.teams[tname]) { log("MKWS team '" + tname + "' already exists, skipping"); + } else if (tname === "AUTO") { + // ### For now: later, this will be how the backwards-compatibility is done + log("Skipping MKWS team '" + tname + "'"); } else { mkws.teams[tname] = _make_mkws_team(j, tname); log("Made MKWS team '" + tname + "'");