Skip to content

Commit 4e9e737

Browse files
committed
API Doc: Oxford commas on vmouse events
1 parent 3b93f05 commit 4e9e737

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

entries/vclick.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<p style="font-style:italic;">The idea behind virtualized mouse events is to translate touch events into mouse events to compensate for the missing mouse event triggers. Developers should be aware that these virtualized mouse events will not prevent any synthetic mouse events from being triggered inside the browser after a touch event. If a mouse-type device is used on the system, the virtualized mouse events are dispatched at the same time as the normal mouse events.</p>
99
<xi:include href="../includes/core-extension-desc.xml" xmlns:xi="http://www.w3.org/2003/XInclude"/>
1010
<pre><code><![CDATA[
11-
$( document ).on( "vclick" , "p" , function(){
11+
$( document ).on( "vclick", "p", function(){
1212
$( this ).append( '<span style="color:#00F;">vmouseup fired.</span>' );
1313
});
1414
]]></code></pre>

entries/vmouseover.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<p style="font-style:italic;">The idea behind virtualized mouse events is to translate touch events into mouse events to compensate for the missing mouse event triggers. Developers should be aware that these virtualized mouse events will not prevent any synthetic mouse events from being triggered inside the browser after a touch event. If a mouse-type device is used on the system, the virtualized mouse events are dispatched at the same time as the normal mouse events.</p>
99
<xi:include href="../includes/core-extension-desc.xml" xmlns:xi="http://www.w3.org/2003/XInclude"/>
1010
<pre><code><![CDATA[
11-
$( document ).on( "vmouseover" , "p" , function(){
11+
$( document ).on( "vmouseover", "p", function(){
1212
$( this ).append( '<span style="color:#00F;">vmouseover fired.</span>' );
1313
});
1414
]]></code></pre>

entries/vmouseup.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<p style="font-style:italic;">The idea behind virtualized mouse events is to translate touch events into mouse events to compensate for the missing mouse event triggers. Developers should be aware that these virtualized mouse events will not prevent any synthetic mouse events from being triggered inside the browser after a touch event. If a mouse-type device is used on the system, the virtualized mouse events are dispatched at the same time as the normal mouse events.</p>
99
<xi:include href="../includes/core-extension-desc.xml" xmlns:xi="http://www.w3.org/2003/XInclude"/>
1010
<pre><code><![CDATA[
11-
$( document ).on( "vmouseup" , "p" , function(){
11+
$( document ).on( "vmouseup", "p", function(){
1212
$( this ).append( '<span style="color:#00F;">vmouseup fired.</span>' );
1313
});
1414
]]></code></pre>

resources/vclick/example1.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<p>Touch here to see what happens.</p>
1313
<script>
1414
$( function(){
15-
$( document ).on( "vclick" , "p" , function(){
15+
$( document ).on( "vclick", "p", function(){
1616
$( this ).append( '<span style="color:#00F;">vclick fired.</span>' );
1717
});
1818
});

resources/vmouseover/example1.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<p>Touch here to see what happens.</p>
1313
<script>
1414
$( function(){
15-
$( document ).on( "vmouseover" , "p" , function(){
15+
$( document ).on( "vmouseover", "p", function(){
1616
$( this ).append( '<span style="color:#00F;">vmouseover fired.</span>' );
1717
});
1818
});

resources/vmouseup/example1.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<p>Touch here to see what happens.</p>
1313
<script>
1414
$( function(){
15-
$( document ).on( "vmouseup" , "p" , function(){
15+
$( document ).on( "vmouseup", "p", function(){
1616
$( this ).append( '<span style="color:#00F;">vmouseup fired.</span>' ;
1717
});
1818
});

0 commit comments

Comments
 (0)