aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorScott González <scott.gonzalez@gmail.com>2008-06-05 18:11:29 +0000
committerScott González <scott.gonzalez@gmail.com>2008-06-05 18:11:29 +0000
commit24eb176f0cd986cbedd08db11d168431df10ed69 (patch)
treedd98cff164bcb6314d274fa1adb7937ede3bbd21
parent1e9593646f5047cfc5b1754b663e59ec9b73dfce (diff)
downloadjquery-24eb176f0cd986cbedd08db11d168431df10ed69.tar.gz
jquery-24eb176f0cd986cbedd08db11d168431df10ed69.zip
ajax tests: Replaced $ with jQuery.
-rw-r--r--test/data/test.html2
-rw-r--r--test/data/test.js2
-rw-r--r--test/data/test.php2
-rw-r--r--test/data/test2.html2
4 files changed, 4 insertions, 4 deletions
diff --git a/test/data/test.html b/test/data/test.html
index fc6dc3860..eec028e90 100644
--- a/test/data/test.html
+++ b/test/data/test.html
@@ -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>
diff --git a/test/data/test.js b/test/data/test.js
index f8bdd091e..a41cb232b 100644
--- a/test/data/test.js
+++ b/test/data/test.js
@@ -1,3 +1,3 @@
var foobar = "bar";
-$('#ap').html('bar');
+jQuery('#ap').html('bar');
ok( true, "test.js executed");
diff --git a/test/data/test.php b/test/data/test.php
index 9dbea9798..3d08f3253 100644
--- a/test/data/test.php
+++ b/test/data/test.php
@@ -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>
diff --git a/test/data/test2.html b/test/data/test2.html
index ebf610e43..1df6151a0 100644
--- a/test/data/test2.html
+++ b/test/data/test2.html
@@ -1,5 +1,5 @@
<script type="text/javascript">
var testFoo = "foo";
-$('#foo').html('foo');
+jQuery('#foo').html('foo');
ok( true, "test2.html executed" );
</script>