From 7bce6486a2b24a9289d1555140ed66ecdfa1bbf1 Mon Sep 17 00:00:00 2001 From: Mike Taylor Date: Fri, 2 May 2014 16:10:42 +0100 Subject: [PATCH] The team-private findnode function is no longer made visible as the team.findnode method. It's not actually been used for a while now, since widgets know their own nodes. Its continued existence is a bit of an embarrassment for various reasons, including its knowledge of how "AUTO" is special and the extremely complex jQuery selectors is generates in some cases. It would be good to get rid of it completely, but it's presently (ab)used for full-record display. Is there a good way to widgetify that? --- src/mkws-team.js | 1 - 1 file changed, 1 deletion(-) diff --git a/src/mkws-team.js b/src/mkws-team.js index 4d65628..ab6eeb2 100644 --- a/src/mkws-team.js +++ b/src/mkws-team.js @@ -372,7 +372,6 @@ function team($, teamName) { //log('findnode(' + selector + ') found ' + node.length + ' nodes'); return node; } - that.findnode = findnode; // This much simpler and more efficient function should be usable -- 1.7.10.4