Skip to content

API Doc: Quick Fixes #70

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Oct 16, 2012
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
API Doc: Comma fix
Fixed commas.
  • Loading branch information
AliciaLippert committed Oct 16, 2012
commit adeddf4dd8f672666f467d60545220645db90353
2 changes: 1 addition & 1 deletion entries/vmousedown.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<pre>
<code><![CDATA[
$( function (){
$( document ).on( "vmousedown" , "p" , function(){
$( document ).on( "vmousedown", "p", function(){
$( this ).append( '<span style="color:#00F;">Mouse down.</span>' );
});
]]></code>
Expand Down
2 changes: 1 addition & 1 deletion resources/vmousedown/example1.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<p>Touch here, move up and down to see what happens.</p>
<script>
$( function(){
$( document ).on( "vmousedown" , "p" , function(){
$( document ).on( "vmousedown", "p", function(){
$( this ).append( '<span style="color:#00F;">Mouse down.</span>' );}
});
</script>
Expand Down
2 changes: 1 addition & 1 deletion resources/vmouseout/example1.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<p>Touch here, move up and down to see what happens.</p>
<script>
$( function(){
$( document ).on( "vmouseout" , "p" , function(){
$( document ).on( "vmouseout", "p", function(){
$( this ).append( '<span style="color:#00F;">Mouse out.</span>' );}
});
</script>
Expand Down