c79b9568b37a81473b8d568c24b72e5c9b8c15bb
tdreszer
  Tue Aug 10 16:54:12 2010 -0700
Fixed a few comments
diff --git src/hg/js/utils.js src/hg/js/utils.js
index 173dab7..3fa8c99 100644
--- src/hg/js/utils.js
+++ src/hg/js/utils.js
@@ -721,7 +721,7 @@
         else
             warn("_launchWaitOnFunction called with " + funcArgs.length + " arguments.  Only 5 are supported.");
     }
-    // Special if the first var is an obj
+    // Special if the first var is a button that can visually be inset
     if(funcArgs.length > 0 && funcArgs[0].type != undefined) {
         if(funcArgs[0].type == 'button' && $(funcArgs[0]).hasClass('inOutButton')) {
             $(funcArgs[0]).css('borderStyle',"outset");
@@ -754,7 +754,7 @@
     }
     $(waitMask).css('display','block');
 
-    // Special if the first var is an obj
+    // Special if the first var is a button that can visually be inset
     if(arguments.length > 1 && arguments[1].type != undefined) {
         if(arguments[1].type == 'button' && $(arguments[1]).hasClass('inOutButton')) {
             $(arguments[1]).css( 'borderStyle',"inset");
@@ -767,6 +767,6 @@
     }
     gWaitFunc = func;
 
-    setTimeout('_launchWaitOnFunction();',50); // Necessary incase the selectEnd was over a map item. select takes precedence.
+    setTimeout('_launchWaitOnFunction();',50);
 
 }