You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by sk...@apache.org on 2008/01/04 22:51:23 UTC

svn commit: r609021 - /myfaces/tomahawk/trunk/core/src/main/resources/org/apache/myfaces/custom/calendar/resource/popcalendar.js

Author: skitching
Date: Fri Jan  4 13:51:22 2008
New Revision: 609021

URL: http://svn.apache.org/viewvc?rev=609021&view=rev
Log:
Fix TOMAHAWK-947: change html attribute rowSpan -> rowspan

Modified:
    myfaces/tomahawk/trunk/core/src/main/resources/org/apache/myfaces/custom/calendar/resource/popcalendar.js

Modified: myfaces/tomahawk/trunk/core/src/main/resources/org/apache/myfaces/custom/calendar/resource/popcalendar.js
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/core/src/main/resources/org/apache/myfaces/custom/calendar/resource/popcalendar.js?rev=609021&r1=609020&r2=609021&view=diff
==============================================================================
--- myfaces/tomahawk/trunk/core/src/main/resources/org/apache/myfaces/custom/calendar/resource/popcalendar.js (original)
+++ myfaces/tomahawk/trunk/core/src/main/resources/org/apache/myfaces/custom/calendar/resource/popcalendar.js Fri Jan  4 13:51:22 2008
@@ -1207,7 +1207,7 @@
 
         var dividerCell = document.createElement("td");
         dividerCell.setAttribute("style", "width:1px;")
-        dividerCell.setAttribute("rowSpan", "7");
+        dividerCell.setAttribute("rowspan", "7");
         dividerCell.className = this.initData.themePrefix + "-weeknumber-div-style";
 
         contentRow.appendChild(dividerCell);