You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by id...@apache.org on 2007/01/15 13:04:14 UTC

svn commit: r496288 - /myfaces/tobago/trunk/theme/standard/src/main/resources/org/apache/myfaces/tobago/renderkit/html/standard/standard/script/tobago.js

Author: idus
Date: Mon Jan 15 04:04:14 2007
New Revision: 496288

URL: http://svn.apache.org/viewvc?view=rev&rev=496288
Log:
cosmetics

Modified:
    myfaces/tobago/trunk/theme/standard/src/main/resources/org/apache/myfaces/tobago/renderkit/html/standard/standard/script/tobago.js

Modified: myfaces/tobago/trunk/theme/standard/src/main/resources/org/apache/myfaces/tobago/renderkit/html/standard/standard/script/tobago.js
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/theme/standard/src/main/resources/org/apache/myfaces/tobago/renderkit/html/standard/standard/script/tobago.js?view=diff&rev=496288&r1=496287&r2=496288
==============================================================================
--- myfaces/tobago/trunk/theme/standard/src/main/resources/org/apache/myfaces/tobago/renderkit/html/standard/standard/script/tobago.js (original)
+++ myfaces/tobago/trunk/theme/standard/src/main/resources/org/apache/myfaces/tobago/renderkit/html/standard/standard/script/tobago.js Mon Jan 15 04:04:14 2007
@@ -1005,7 +1005,7 @@
 
 
    /**
-    * Create a overlay with same dimension an wait cursor over a htmlElement.
+    * Create an overlay with same dimension and wait cursor over an htmlElement.
     */
   createOverlay: function(element) {
     var overlay = document.createElement('div');
@@ -1016,14 +1016,14 @@
     overlay.style.width = element.offsetWidth + 'px';
     overlay.style.height = element.offsetHeight + 'px';
     overlay.style.cursor = "wait";
-    // TODO: better z-index strategie
+    // TODO: better z-index strategy
     overlay.style.zIndex = 10000;
     element.appendChild(overlay);
     return overlay;
   },
 
   /**
-    * Create a overlay with same dimension an wait cursor over a htmlElement.
+    * Delete an overlay created by createOverlay.
     */
   deleteOverlay: function(element) {
     var overlay = document.getElementById(element.id + "-overlay");