From 6e634f407b2e2a04887d34effd0c32cb33e24e6c Mon Sep 17 00:00:00 2001 From: Mike Taylor Date: Wed, 5 Feb 2014 16:13:44 +0000 Subject: [PATCH] Simplify team-creation logic --- tools/htdocs/mkws.js | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/tools/htdocs/mkws.js b/tools/htdocs/mkws.js index 40cde79..9f6c7b2 100644 --- a/tools/htdocs/mkws.js +++ b/tools/htdocs/mkws.js @@ -1293,17 +1293,16 @@ function _mkws_jquery_plugin ($) { // For all MKWS-classed nodes that don't have a team // specified, set the team to AUTO. - $('div[class^="mkws"],div[class*=" mkws"]').each(function () { + $('[class^="mkws"],[class*=" mkws"]').each(function () { if (!this.className.match(/mkwsTeam_/)) { log("adding AUTO team to node with class '" + this.className + "'"); $(this).addClass('mkwsTeam_AUTO'); } }); - // Find all nodes with class (NOT id) mkwsRecords, and - // determine their team from the mkwsTeam_* class. So: - //
- $('.mkwsSearch, .mkwsResults, .mkwsRecords, .mkwsTermlists').each(function () { + // Find all nodes with an class, and determine their team from + // the mkwsTeam_* class. Make all team objects. + $('[class^="mkws"],[class*=" mkws"]').each(function () { var node = this; mkws.handle_node_with_team(node, function(tname) { if (mkws.teams[tname]) { -- 1.7.10.4