You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ant.apache.org by hi...@apache.org on 2011/04/20 14:18:04 UTC

svn commit: r1095389 - /ant/site/xooki/xooki.js

Author: hibou
Date: Wed Apr 20 12:18:04 2011
New Revision: 1095389

URL: http://svn.apache.org/viewvc?rev=1095389&view=rev
Log:
Add some end of line so hopefully diff will be shorter

Modified:
    ant/site/xooki/xooki.js

Modified: ant/site/xooki/xooki.js
URL: http://svn.apache.org/viewvc/ant/site/xooki/xooki.js?rev=1095389&r1=1095388&r2=1095389&view=diff
==============================================================================
--- ant/site/xooki/xooki.js (original)
+++ ant/site/xooki/xooki.js Wed Apr 20 12:18:04 2011
@@ -466,11 +466,11 @@ xooki.html = {
 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 @@ xooki.component = {
     },
     
     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 @@ xooki.component = {
             		} 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;
     },