Move utility function findnode() to near the end.
authorMike Taylor <mike@indexdata.com>
Mon, 3 Mar 2014 17:18:17 +0000 (17:18 +0000)
committerMike Taylor <mike@indexdata.com>
Mon, 3 Mar 2014 17:18:17 +0000 (17:18 +0000)
tools/htdocs/mkws.js

index 5c40cb3..abee7d2 100644 (file)
@@ -256,21 +256,6 @@ function team($, teamName) {
                    });
 
 
-    // Finds the node of the specified class within the current team
-    // Multiple OR-clauses separated by commas are handled
-    // More complex cases may not work
-    //
-    function findnode(selector, teamName) {
-       teamName = teamName || m_teamName;
-
-       selector = selector.split(',').map(function(s) {
-           return s + '.mkwsTeam_' + teamName;
-       }).join(',');
-
-       return $(selector);
-    }
-
-
     //
     // pz2.js event handlers:
     //
@@ -1180,6 +1165,21 @@ function team($, teamName) {
     mkws.M = M; // so the Handlebars helper can use it
 
 
+    // Finds the node of the specified class within the current team
+    // Multiple OR-clauses separated by commas are handled
+    // More complex cases may not work
+    //
+    function findnode(selector, teamName) {
+       teamName = teamName || m_teamName;
+
+       selector = selector.split(',').map(function(s) {
+           return s + '.mkwsTeam_' + teamName;
+       }).join(',');
+
+       return $(selector);
+    }
+
+
     // main
     (function() {
        try {