Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--org.eclipse.help.webapp/basic/tocView.jsp23
1 files changed, 15 insertions, 8 deletions
diff --git a/org.eclipse.help.webapp/basic/tocView.jsp b/org.eclipse.help.webapp/basic/tocView.jsp
index 0fa22cc5f..839065a1d 100644
--- a/org.eclipse.help.webapp/basic/tocView.jsp
+++ b/org.eclipse.help.webapp/basic/tocView.jsp
@@ -20,26 +20,33 @@
<body bgcolor="#FFFFFF" text="#000000">
+<table border="0" cellpadding="0" cellspacing="0">
<%
- for (int toc=0; toc<data.getTocCount(); toc++)
- {
+ for (int toc=0; toc<data.getTocCount(); toc++) {
%>
- <b><nobr><img src="<%=prefs.getImagesDirectory()%>/toc_obj.gif"><a href="<%="tocView.jsp?toc="+data.getTocHref(toc)%>" target='_self'>&nbsp;<%=data.getTocLabel(toc)%></a></nobr></b>
+ <tr>
+ <td align='left' nowrap>
+ <b><img src="<%=prefs.getImagesDirectory()%>/toc_obj.gif"><a href="<%="tocView.jsp?toc="+data.getTocHref(toc)%>" target='_self'>&nbsp;<%=data.getTocLabel(toc)%></a></b>
+ </td>
+ </tr>
<%
// Only generate the selected toc
- if (data.getSelectedToc() != -1 && data.getTocHref(data.getSelectedToc()).equals(data.getTocHref(toc)))
- {
+ if (data.getSelectedToc() != -1 && data.getTocHref(data.getSelectedToc()).equals(data.getTocHref(toc))) {
%>
- <ul>
+ <tr>
+ <td align='left' nowrap>
+ <ul>
<%
data.generateBasicToc(toc, out);
%>
- </ul>
+ </ul>
+ </td>
+ </tr>
<%
}
}
%>
-
+</table>
</body>
</html>

Back to the top