ajax tests: Replaced $ with jQuery.
authorScott González <scott.gonzalez@gmail.com>
Thu, 5 Jun 2008 18:11:29 +0000 (18:11 +0000)
committerScott González <scott.gonzalez@gmail.com>
Thu, 5 Jun 2008 18:11:29 +0000 (18:11 +0000)
test/data/test.html
test/data/test.js
test/data/test.php
test/data/test2.html

index fc6dc38..eec028e 100644 (file)
@@ -1,6 +1,6 @@
 html text<br/>
 <script type="text/javascript">/* <![CDATA[ */
-testFoo = "foo"; $('#foo').html('foo');
+testFoo = "foo"; jQuery('#foo').html('foo');
 ok( true, "test.html executed" );
 /* ]]> */</script>
 <script src="data/test.js"></script>
index f8bdd09..a41cb23 100644 (file)
@@ -1,3 +1,3 @@
 var foobar = "bar";\r
-$('#ap').html('bar');\r
+jQuery('#ap').html('bar');\r
 ok( true, "test.js executed");\r
index 9dbea97..3d08f32 100644 (file)
@@ -1,6 +1,6 @@
 html text<br/>
 <script type="text/javascript">/* <![CDATA[ */
-testFoo = "foo"; $('#foo').html('foo');
+testFoo = "foo"; jQuery('#foo').html('foo');
 ok( true, "test.php executed" );
 /* ]]> */</script>
 <script src="data/test.js?<?php srand(); echo time() . '' . rand(); ?>"></script>
index ebf610e..1df6151 100644 (file)
@@ -1,5 +1,5 @@
 <script type="text/javascript">
 var testFoo = "foo";
-$('#foo').html('foo');
+jQuery('#foo').html('foo');
 ok( true, "test2.html executed" );
 </script>