From 81cf6edc4df5d98db956d4608c274852f3fb56e4 Mon Sep 17 00:00:00 2001 From: Mike Taylor Date: Fri, 24 Jan 2014 08:32:15 +0000 Subject: [PATCH] For now, don't make the "AUTO" team. Allows jasmine-popup.html to work. --- tools/htdocs/mkws.js | 3 +++ 1 file changed, 3 insertions(+) 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 + "'"); -- 1.7.10.4