[geeklog-cvs] geeklog: Fixed up a few comments

geeklog-cvs at lists.geeklog.net geeklog-cvs at lists.geeklog.net
Sun Jan 18 21:17:08 EST 2009


details:   http://project.geeklog.net/cgi-bin/hgweb.cgi/rev/c10af5ef9e81
changeset: 6697:c10af5ef9e81
user:      blaine
date:      Sun Jan 18 21:16:35 2009 -0500
description:
Fixed up a few comments

diffstat:

1 file changed, 2 insertions(+), 2 deletions(-)
public_html/javascript/advanced_editor.js |    4 ++--

diffs (21 lines):

diff -r b963011d0fbc -r c10af5ef9e81 public_html/javascript/advanced_editor.js
--- a/public_html/javascript/advanced_editor.js	Sun Jan 18 21:09:44 2009 -0500
+++ b/public_html/javascript/advanced_editor.js	Sun Jan 18 21:16:35 2009 -0500
@@ -31,7 +31,7 @@
         // Reset the current selected navbar tab
         var navbar = document.getElementById('current');
         if (navbar) navbar.id = '';
-        // Cycle thru the navlist child elements - buiding an array of just the link items
+        // Cycle thru the navlist child elements - building an array of just the link items
         var navbar = document.getElementById('navlist');
         var menuitems = new Array(8);
         var item = 0;
@@ -42,7 +42,7 @@
             }
         }
         // Now that I have just the link items I can set the selected tab using the passed selected Item number
-        // Set the <a tag to have an id called 'current'
+        // Set the <a> tag to have an id called 'current'
         var menuitem = menuitems[selindex];
         for (var j=0 ;j < menuitem.childNodes.length ; j++ ) {
             if (menuitem.childNodes[j].nodeName.toLowerCase() == 'a')  menuitem.childNodes[j].id = 'current';



More information about the geeklog-cvs mailing list