You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by lo...@apache.org on 2011/11/21 10:47:47 UTC

svn commit: r1204418 - /myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/tc/sheet/sheet-simple.xhtml

Author: lofwyr
Date: Mon Nov 21 09:47:46 2011
New Revision: 1204418

URL: http://svn.apache.org/viewvc?rev=1204418&view=rev
Log:
CSS colors for better debugging the sizes

Modified:
    myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/tc/sheet/sheet-simple.xhtml

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/tc/sheet/sheet-simple.xhtml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/tc/sheet/sheet-simple.xhtml?rev=1204418&r1=1204417&r2=1204418&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/tc/sheet/sheet-simple.xhtml (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/tc/sheet/sheet-simple.xhtml Mon Nov 21 09:47:46 2011
@@ -38,5 +38,14 @@
     <!--todo-->
     <!--<tc:script onload="TobagoAssert.assertLayout('page:todo', 0, 0, 600, 14);"/>-->
 
+    <tc:script>
+      $(document).ready(function() {
+        $("td>span").css("background-color", "white");
+        $("td:odd").css("background-color", "#ffbbff");
+        $("td:even").css("background-color", "#bbffbb");
+      });
+
+    </tc:script>
+
   </tc:page>
 </f:view>