projects
/
mkws-moved-to-github.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e30cf1b
)
Fix CSS for targets area.
author
Mike Taylor
<mike@indexdata.com>
Tue, 4 Mar 2014 14:10:50 +0000
(14:10 +0000)
committer
Mike 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
patch
|
blob
|
history
diff --git
a/tools/htdocs/mkws.js
b/tools/htdocs/mkws.js
index
a2f1ef9
..
f320111
100644
(file)
--- a/
tools/htdocs/mkws.js
+++ b/
tools/htdocs/mkws.js
@@
-212,7
+212,8
@@
function widget($, team, type, node) {
}
table += '</tbody></table>';
- $(node).html(table);
+ var subnode = $(node).children('.mkwsBytarget');
+ subnode.html(table);
});
}