Add some end of line so hopefully diff will be shorter


git-svn-id: https://svn.apache.org/repos/asf/ant/site/xooki@1095389 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/xooki.js b/xooki.js
index b7b1581..b5304f7 100644
--- a/xooki.js
+++ b/xooki.js
@@ -466,11 +466,11 @@
 xooki.component = {
     childrenList: function () {
     	if (xooki.page.children.length > 0) {
-    		childrenList = '<ul class="'+css('childrenList')+'">';
+    		childrenList = '<ul class="'+css('childrenList')+'">\n';
     		for (var i in xooki.page.children) {
-    			childrenList+='<li>'+xooki.html.pageLink(xooki.page.children[i])+'</li>';
+    			childrenList+='<li>'+xooki.html.pageLink(xooki.page.children[i])+'</li>\n';
     		}
-    		childrenList += "</ul>";
+    		childrenList += "</ul>\n";
     		return childrenList;
     	} else {
     	   return "";
@@ -478,7 +478,7 @@
     },
     
     menu: function () {
-    	var menu = '<ul id="'+css("treemenu")+'" class="treeview">';
+    	var menu = '<ul id="'+css("treemenu")+'" class="treeview">\n';
     	menu += (function (page) {
         	var menu = '';
         	for (var i in page.children) {
@@ -499,12 +499,12 @@
             		} else {
                         menu += '<li id="xooki-'+page.children[i].id+'">'+xooki.html.pageLink(page.children[i]);
                     }
-            		menu += '</li>';
+            		menu += '</li>\n';
                 }
         	}
         	return menu;
         })(xooki.toc);
-    	menu += '</ul>';
+    	menu += '</ul>\n';
     	return menu;
     },