Skip to content

Commit 226d103

Browse files
committed
VMouseDown: Fixed mistakes in entry and include
Fixes gh-303 Closes gh-368
1 parent af5599b commit 226d103

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

entries/vmousedown.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<title>vmousedown</title>
44
<desc>Virtualized mousedown event handler.</desc>
55
<longdesc>
6-
<p>We provide a set of "virtual" mouse events that attempt to abstract away mouse and touch events. This allows the developer to register listeners for the basic mouse events, such as mousedown, mousemove, mouseup, and click, and the plugin will take care of registering the correct listeners behind the scenes to invoke the listener at the fastest possible time for that device. In touch environments, the plugin retains the order of event firing that is seen in traditional mouse environments, so for example, vmouseup is always dispatched before vmousedown, and vmousedown before vclick, etc. The virtual mouse events also normalize how coordinate information is extracted from the event, so in touch based environments, coordinates are available from the pageX, pageY, screenX, screenY, clientX, and clientY properties, directly on the event object.</p>
6+
<p>We provide a set of "virtual" mouse events that attempt to abstract away mouse and touch events. This allows the developer to register listeners for the basic mouse events, such as mousedown, mousemove, mouseup, and click, and the plugin will take care of registering the correct listeners behind the scenes to invoke the listener at the fastest possible time for that device. In touch environments, the plugin retains the order of event firing that is seen in traditional mouse environments, so for example, vmousedown is always dispatched before vmouseup, and vmouseup before vclick, etc. The virtual mouse events also normalize how coordinate information is extracted from the event, so in touch based environments, coordinates are available from the pageX, pageY, screenX, screenY, clientX, and clientY properties, directly on the event object.</p>
77
<p>The jQuery Mobile <code>vmousedown</code> event handler simulates the "onmousedown" event handler on mobile devices.</p>
88

99
<xi:include href="../includes/core-extension-desc.xml" xmlns:xi="http://www.w3.org/2003/XInclude"/>

includes/core-extension-desc.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
<?xml version="1.0"?>
2-
<p>This plugin extends jQuery's built-in <placeholder name="core-link"/> method. If jQuery UI is not loaded, calling the <code>.<placeholder name="name"/>()</code> method may not fail directly, as the method still exists. However, the expected behavior will not occur.</p>
2+
<p>This plugin extends jQuery's built-in <placeholder name="core-link"/> method. If jQuery Mobile is not loaded, calling the <code>.<placeholder name="name"/>()</code> method may not fail directly, as the method still exists. However, the expected behavior will not occur.</p>

0 commit comments

Comments
 (0)