From: Mike Taylor Date: Wed, 5 Feb 2014 16:13:44 +0000 (+0000) Subject: Simplify team-creation logic X-Git-Tag: 1.0.0~1515^2~11 X-Git-Url: http://git.indexdata.com/?p=mkws-moved-to-github.git;a=commitdiff_plain;h=6e634f407b2e2a04887d34effd0c32cb33e24e6c Simplify team-creation logic --- 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]) {