Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
ajax tests: Replaced $ with jQuery.
- Loading branch information
1 parent
1e95936
commit 24eb176f0cd986cbedd08db11d168431df10ed69
Showing
4 changed files
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -1,3 +1,3 @@ | ||
var foobar = "bar"; | ||
$('#ap').html('bar'); | ||
jQuery('#ap').html('bar'); | ||
ok( true, "test.js executed"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -1,5 +1,5 @@ | ||
<script type="text/javascript"> | ||
var testFoo = "foo"; | ||
$('#foo').html('foo'); | ||
jQuery('#foo').html('foo'); | ||
ok( true, "test2.html executed" ); | ||
</script> |