Skip to content
Snippets Groups Projects
Commit 68b047ab authored by rswindell's avatar rswindell
Browse files

No longer indent libs and directories (most browsers seem to support the

OPTGROUP tag now).
parent 9304eea0
No related branches found
No related tags found
No related merge requests found
......@@ -74,11 +74,11 @@ writeln("<option>Go To...</option>");
writeln(format("<option value=/%s>Root</option>",html_index_file));
for(l in file_area.lib_list) {
writeln(format("<optgroup label=%s>",file_area.lib_list[l].name));
writeln(format("<option value=%s> [%s]"
writeln(format("<option value=%s>[%s]"
,file_area.lib_list[l].link
,file_area.lib_list[l].name));
for(d in file_area.lib_list[l].dir_list) {
writeln(format("<option value=%s>&nbsp&nbsp&nbsp&nbsp %s"
writeln(format("<option value=%s>%s"
,file_area.lib_list[l].dir_list[d].link
,file_area.lib_list[l].dir_list[d].name));
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment