Fix CSS for targets area.
authorMike Taylor <mike@indexdata.com>
Tue, 4 Mar 2014 14:10:50 +0000 (14:10 +0000)
committerMike Taylor <mike@indexdata.com>
Tue, 4 Mar 2014 14:10:50 +0000 (14:10 +0000)
(HTML is assigned to a subnode, not the widget node itself.)

tools/htdocs/mkws.js

index a2f1ef9..f320111 100644 (file)
@@ -212,7 +212,8 @@ function widget($, team, type, node) {
            }
            
            table += '</tbody></table>';
-           $(node).html(table);
+           var subnode = $(node).children('.mkwsBytarget');
+           subnode.html(table);
        });
     }