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:48:50 UTC

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

Author: lofwyr
Date: Mon Nov 21 09:48:49 2011
New Revision: 1204421

URL: http://svn.apache.org/viewvc?rev=1204421&view=rev
Log:
code style: using jQuery instead of $

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=1204421&r1=1204420&r2=1204421&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:48:49 2011
@@ -39,10 +39,10 @@
     <!--<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");
+      jQuery(document).ready(function() {
+        jQuery("td>span").css("background-color", "white");
+        jQuery("td:odd").css("background-color", "#ffbbff");
+        jQuery("td:even").css("background-color", "#bbffbb");
       });
 
     </tc:script>