2013-10-25 Ryosuke Niwa <rniwa@webkit.org>
+ One more build fix. Put each latest revision information in an actual td.
+
+ * public/index.html:
+
+2013-10-25 Ryosuke Niwa <rniwa@webkit.org>
+
Yet another set of build fixes.
1. Manually strip / from revisions JSON if there is any.
for (var i = 0; i < repositories.length; i++) {
var revisionInfo = build.formattedRevision(repositories[i].id);
if (revisionInfo.url)
- formattedRevisionCells.push(element('a', {'href': revisionInfo.url}, [revisionInfo.label]));
+ formattedRevisionCells.push(element('td', [element('a', {'href': revisionInfo.url}, [revisionInfo.label])]));
else
- formattedRevisionCells.push(revisionInfo.label);
+ formattedRevisionCells.push(element('td', [revisionInfo.label]));
}
}
</script>
</body>
-</html>
\ No newline at end of file
+</html>