Merge pull request #1382 from moonlite/gh-pages-master
Add documentation for zoomlevelschange-event and add some missing </td>'s
This commit is contained in:
commit
28fb2fa0e4
149
reference.html
149
reference.html
@ -406,147 +406,152 @@ var map = L.map('map', {
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code><b>click</b></code></td>
|
||||
<td><code><a href="#mouse-event">MouseEvent</a></code>
|
||||
<td><code><a href="#mouse-event">MouseEvent</a></code></td>
|
||||
<td>Fired when the user clicks (or taps) the map.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code><b>dblclick</b></code></td>
|
||||
<td><code><a href="#mouse-event">MouseEvent</a></code>
|
||||
<td><code><a href="#mouse-event">MouseEvent</a></code></td>
|
||||
<td>Fired when the user double-clicks (or double-taps) the map.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code><b>mousedown</b></code></td>
|
||||
<td><code><a href="#mouse-event">MouseEvent</a></code>
|
||||
<td><code><a href="#mouse-event">MouseEvent</a></code></td>
|
||||
<td>Fired when the user pushes the mouse button on the map.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code><b>mouseup</b></code></td>
|
||||
<td><code><a href="#mouse-event">MouseEvent</a></code>
|
||||
<td><code><a href="#mouse-event">MouseEvent</a></code></td>
|
||||
<td>Fired when the user pushes the mouse button on the map.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code><b>mouseover</b></code></td>
|
||||
<td><code><a href="#mouse-event">MouseEvent</a></code>
|
||||
<td><code><a href="#mouse-event">MouseEvent</a></code></td>
|
||||
<td>Fired when the mouse enters the map.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code><b>mouseout</b></code></td>
|
||||
<td><code><a href="#mouse-event">MouseEvent</a></code>
|
||||
<td><code><a href="#mouse-event">MouseEvent</a></code></td>
|
||||
<td>Fired when the mouse leaves the map.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code><b>mousemove</b></code></td>
|
||||
<td><code><a href="#mouse-event">MouseEvent</a></code>
|
||||
<td><code><a href="#mouse-event">MouseEvent</a></code></td>
|
||||
<td>Fired while the mouse moves over the map.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code><b>contextmenu</b></code></td>
|
||||
<td><code><a href="#mouse-event">MouseEvent</a></code>
|
||||
<td><code><a href="#mouse-event">MouseEvent</a></code></td>
|
||||
<td>Fired when the user pushes the right mouse button on the map, prevents default browser context menu from showing if there are listeners on this event.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code><b>focus</b></code></td>
|
||||
<td><code><a href="#event">Event</a></code>
|
||||
<td><code><a href="#event">Event</a></code></td>
|
||||
<td>Fired when the user focuses the map either by tabbing to it or clicking/panning.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code><b>blur</b></code></td>
|
||||
<td><code><a href="#event">Event</a></code>
|
||||
<td><code><a href="#event">Event</a></code></td>
|
||||
<td>Fired when the map looses focus.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code><b>preclick</b></code></td>
|
||||
<td><code><a href="#mouse-event">MouseEvent</a></code>
|
||||
<td><code><a href="#mouse-event">MouseEvent</a></code></td>
|
||||
<td>Fired before mouse click on the map (sometimes useful when you want something to happen on click before any existing click handlers start running).</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code><b>load</b></code></td>
|
||||
<td><code><a href="#event">Event</a></code>
|
||||
<td><code><a href="#event">Event</a></code></td>
|
||||
<td>Fired when the map is initialized (when its center and zoom are set for the first time).</td>
|
||||
</tr>
|
||||
<tr id="map-viewreset">
|
||||
<td><code><b>viewreset</b></code></td>
|
||||
<td><code><a href="#event">Event</a></code>
|
||||
<td><code><a href="#event">Event</a></code></td>
|
||||
<td>Fired when the map needs to redraw its content (this usually happens on map zoom or load). Very useful for creating custom overlays.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code><b>movestart</b></code></td>
|
||||
<td><code><a href="#event">Event</a></code>
|
||||
<td><code><a href="#event">Event</a></code></td>
|
||||
<td>Fired when the view of the map starts changing (e.g. user starts dragging the map).</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code><b>move</b></code></td>
|
||||
<td><code><a href="#event">Event</a></code>
|
||||
<td><code><a href="#event">Event</a></code></td>
|
||||
<td>Fired on any movement of the map view.</td>
|
||||
</tr>
|
||||
<tr id="map-moveend">
|
||||
<td><code><b>moveend</b></code></td>
|
||||
<td><code><a href="#event">Event</a></code>
|
||||
<td><code><a href="#event">Event</a></code></td>
|
||||
<td>Fired when the view of the map ends changed (e.g. user stopped dragging the map).</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code><b>dragstart</b></code></td>
|
||||
<td><code><a href="#event">Event</a></code>
|
||||
<td><code><a href="#event">Event</a></code></td>
|
||||
<td>Fired when the user starts dragging the map.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code><b>drag</b></code></td>
|
||||
<td><code><a href="#event">Event</a></code>
|
||||
<td><code><a href="#event">Event</a></code></td>
|
||||
<td>Fired repeatedly while the user drags the map.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code><b>dragend</b></code></td>
|
||||
<td><code><a href="#event">Event</a></code>
|
||||
<td><code><a href="#event">Event</a></code></td>
|
||||
<td>Fired when the user stops dragging the map.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code><b>zoomstart</b></code></td>
|
||||
<td><code><a href="#event">Event</a></code>
|
||||
<td><code><a href="#event">Event</a></code></td>
|
||||
<td>Fired when the map zoom is about to change (e.g. before zoom animation).</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code><b>zoomend</b></code></td>
|
||||
<td><code><a href="#event">Event</a></code>
|
||||
<td><code><a href="#event">Event</a></code></td>
|
||||
<td>Fired when the map zoom changes.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code><b>zoomlevelschange</b></code></td>
|
||||
<td><code><a href="#event">Event</a></code></td>
|
||||
<td>Fired when the number of zoomlevels on the map is changed due to adding or removing a layer.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code><b>autopanstart</b></code></td>
|
||||
<td><code><a href="#event">Event</a></code>
|
||||
<td><code><a href="#event">Event</a></code></td>
|
||||
<td>Fired when the map starts autopanning when opening a popup.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code><b>layeradd</b></code></td>
|
||||
<td><code><a href="#layer-event">LayerEvent</a></code>
|
||||
<td><code><a href="#layer-event">LayerEvent</a></code></td>
|
||||
<td>Fired when a new layer is added to the map.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code><b>layerremove</b></code></td>
|
||||
<td><code><a href="#layer-event">LayerEvent</a></code>
|
||||
<td><code><a href="#layer-event">LayerEvent</a></code></td>
|
||||
<td>Fired when some layer is removed from the map.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code><b>baselayerchange</b></code></td>
|
||||
<td><code><a href="#layer-event">LayerEvent</a></code>
|
||||
<td><code><a href="#layer-event">LayerEvent</a></code></td>
|
||||
<td>Fired when the base layer is changed through the layer control.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code><b>locationfound</b></code></td>
|
||||
<td><code><a href="#location-event">LocationEvent</a></code>
|
||||
<td><code><a href="#location-event">LocationEvent</a></code></td>
|
||||
<td>Fired when geolocation (using <code>locate</code> method) went successfully.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code><b>locationerror</b></code></td>
|
||||
<td><code><a href="#error-event">ErrorEvent</a></code>
|
||||
<td><code><a href="#error-event">ErrorEvent</a></code></td>
|
||||
<td>Fired when geolocation (using <code>locate</code> method) failed.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code><b>popupopen</b></code></td>
|
||||
<td><code><a href="#popup-event">PopupEvent</a></code>
|
||||
<td><code><a href="#popup-event">PopupEvent</a></code></td>
|
||||
<td>Fired when a popup is opened (using <code>openPopup</code> method).</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code><b>popupclose</b></code></td>
|
||||
<td><code><a href="#popup-event">PopupEvent</a></code>
|
||||
<td><code><a href="#popup-event">PopupEvent</a></code></td>
|
||||
<td>Fired when a popup is closed (using <code>closePopup</code> method).</td>
|
||||
</tr>
|
||||
</table>
|
||||
@ -1136,52 +1141,52 @@ var map = L.map('map', {
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code><b>click</b></code></td>
|
||||
<td><code><a href="#mouse-event">MouseEvent</a></code>
|
||||
<td><code><a href="#mouse-event">MouseEvent</a></code></td>
|
||||
<td>Fired when the user clicks (or taps) the marker.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code><b>dblclick</b></code></td>
|
||||
<td><code><a href="#mouse-event">MouseEvent</a></code>
|
||||
<td><code><a href="#mouse-event">MouseEvent</a></code></td>
|
||||
<td>Fired when the user double-clicks (or double-taps) the marker.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code><b>mousedown</b></code></td>
|
||||
<td><code><a href="#mouse-event">MouseEvent</a></code>
|
||||
<td><code><a href="#mouse-event">MouseEvent</a></code></td>
|
||||
<td>Fired when the user pushes the mouse button on the marker.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code><b>mouseover</b></code></td>
|
||||
<td><code><a href="#mouse-event">MouseEvent</a></code>
|
||||
<td><code><a href="#mouse-event">MouseEvent</a></code></td>
|
||||
<td>Fired when the mouse enters the marker.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code><b>mouseout</b></code></td>
|
||||
<td><code><a href="#mouse-event">MouseEvent</a></code>
|
||||
<td><code><a href="#mouse-event">MouseEvent</a></code></td>
|
||||
<td>Fired when the mouse leaves the marker.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code><b>dragstart</b></code></td>
|
||||
<td><code><a href="#event">Event</a></code>
|
||||
<td><code><a href="#event">Event</a></code></td>
|
||||
<td>Fired when the user starts dragging the marker.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code><b>drag</b></code></td>
|
||||
<td><code><a href="#event">Event</a></code>
|
||||
<td><code><a href="#event">Event</a></code></td>
|
||||
<td>Fired repeatedly while the user drags the marker.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code><b>dragend</b></code></td>
|
||||
<td><code><a href="#event">Event</a></code>
|
||||
<td><code><a href="#event">Event</a></code></td>
|
||||
<td>Fired when the user stops dragging the marker.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code><b>move</b></code></td>
|
||||
<td><code><a href="#event">Event</a></code>
|
||||
<td><code><a href="#event">Event</a></code></td>
|
||||
<td>Fired when the marker is moved via setLatLng. New coordinate include in event arguments.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code><b>remove</b></code></td>
|
||||
<td><code><a href="#event">Event</a></code>
|
||||
<td><code><a href="#event">Event</a></code></td>
|
||||
<td>Fired when the marker is removed from the map.</td>
|
||||
</tr>
|
||||
</table>
|
||||
@ -1599,22 +1604,22 @@ var map = L.map('map', {
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code><b>loading</b></code></td>
|
||||
<td><code><a href="#event">Event</a></code>
|
||||
<td><code><a href="#event">Event</a></code></td>
|
||||
<td>Fired when the tile layer starts loading tiles.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code><b>load</b></code></td>
|
||||
<td><code><a href="#event">Event</a></code>
|
||||
<td><code><a href="#event">Event</a></code></td>
|
||||
<td>Fired when the tile layer loaded all visible tiles.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code><b>tileload</b></code></td>
|
||||
<td><code><a href="#tile-event">Event</a></code>
|
||||
<td><code><a href="#tile-event">Event</a></code></td>
|
||||
<td>Fired when a tile loads.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code><b>tileunload</b></code></td>
|
||||
<td><code><a href="#tile-event">Event</a></code>
|
||||
<td><code><a href="#tile-event">Event</a></code></td>
|
||||
<td>Fired when a tile is removed (e.g. when you have <code>unloadInvisibleTiles</code> on).</td>
|
||||
</tr>
|
||||
</table>
|
||||
@ -1999,37 +2004,37 @@ L.imageOverlay(imageUrl, imageBounds).addTo(map);</code></pre>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code><b>click</b></code></td>
|
||||
<td><code><a href="#mouse-event">MouseEvent</a></code>
|
||||
<td><code><a href="#mouse-event">MouseEvent</a></code></td>
|
||||
<td>Fired when the user clicks (or taps) the object.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code><b>dblclick</b></code></td>
|
||||
<td><code><a href="#mouse-event">MouseEvent</a></code>
|
||||
<td><code><a href="#mouse-event">MouseEvent</a></code></td>
|
||||
<td>Fired when the user double-clicks (or double-taps) the object.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code><b>mousedown</b></code></td>
|
||||
<td><code><a href="#mouse-event">MouseEvent</a></code>
|
||||
<td><code><a href="#mouse-event">MouseEvent</a></code></td>
|
||||
<td>Fired when the user pushes the mouse button on the object.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code><b>mouseover</b></code></td>
|
||||
<td><code><a href="#mouse-event">MouseEvent</a></code>
|
||||
<td><code><a href="#mouse-event">MouseEvent</a></code></td>
|
||||
<td>Fired when the mouse enters the object.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code><b>mouseout</b></code></td>
|
||||
<td><code><a href="#mouse-event">MouseEvent</a></code>
|
||||
<td><code><a href="#mouse-event">MouseEvent</a></code></td>
|
||||
<td>Fired when the mouse leaves the object.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code><b>contextmenu</b></code></td>
|
||||
<td><code><a href="#mouse-event">MouseEvent</a></code>
|
||||
<td><code><a href="#mouse-event">MouseEvent</a></code></td>
|
||||
<td>Fired when the user pushes the right mouse button on the object, prevents default browser context menu from showing if there are listeners on this event.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code><b>remove</b></code></td>
|
||||
<td><code><a href="#event">Event</a></code>
|
||||
<td><code><a href="#event">Event</a></code></td>
|
||||
<td>Fired when the path is removed from the map.</td>
|
||||
</tr>
|
||||
</table>
|
||||
@ -2692,32 +2697,32 @@ map.fitBounds(bounds);</code></pre>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code><b>click</b></code></td>
|
||||
<td><code><a href="#mouse-event">MouseEvent</a></code>
|
||||
<td><code><a href="#mouse-event">MouseEvent</a></code></td>
|
||||
<td>Fired when the user clicks (or taps) the group.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code><b>dblclick</b></code></td>
|
||||
<td><code><a href="#mouse-event">MouseEvent</a></code>
|
||||
<td><code><a href="#mouse-event">MouseEvent</a></code></td>
|
||||
<td>Fired when the user double-clicks (or double-taps) the group.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code><b>mouseover</b></code></td>
|
||||
<td><code><a href="#mouse-event">MouseEvent</a></code>
|
||||
<td><code><a href="#mouse-event">MouseEvent</a></code></td>
|
||||
<td>Fired when the mouse enters the group.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code><b>mouseout</b></code></td>
|
||||
<td><code><a href="#mouse-event">MouseEvent</a></code>
|
||||
<td><code><a href="#mouse-event">MouseEvent</a></code></td>
|
||||
<td>Fired when the mouse leaves the group.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code><b>mousemove</b></code></td>
|
||||
<td><code><a href="#mouse-event">MouseEvent</a></code>
|
||||
<td><code><a href="#mouse-event">MouseEvent</a></code></td>
|
||||
<td>Fired while the mouse moves over the layers of the group.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code><b>contextmenu</b></code></td>
|
||||
<td><code><a href="#mouse-event">MouseEvent</a></code>
|
||||
<td><code><a href="#mouse-event">MouseEvent</a></code></td>
|
||||
<td>Fired when the user right-clicks on one of the layers.</td>
|
||||
</tr>
|
||||
</table>
|
||||
@ -3322,12 +3327,12 @@ map.panBy(new L.Point(200, 300));</code></pre>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code><b>min</b></code></td>
|
||||
<td><code><a href="#point">Point</a></code>
|
||||
<td><code><a href="#point">Point</a></code></td>
|
||||
<td>The top left corner of the rectangle.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code><b>max</b></code></td>
|
||||
<td><code><a href="#point">Point</a></code>
|
||||
<td><code><a href="#point">Point</a></code></td>
|
||||
<td>The bottom right corner of the rectangle.</td>
|
||||
</tr>
|
||||
</table>
|
||||
@ -3449,12 +3454,12 @@ L.marker([50.505, 30.57], {icon: myIcon}).addTo(map);</code></pre>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code><b>iconSize</b></code></td>
|
||||
<td><code><a href="#point">Point</a></code>
|
||||
<td><code><a href="#point">Point</a></code></td>
|
||||
<td>Size of the icon image in pixels.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code><b>iconAnchor</b></code></td>
|
||||
<td><code><a href="#point">Point</a></code>
|
||||
<td><code><a href="#point">Point</a></code></td>
|
||||
<td>The coordinates of the "tip" of the icon (relative to its top left corner). The icon will be aligned so that this point is at the marker's geographical location. Centered by default if size is specified, also can be set in CSS with negative margins.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
@ -3469,17 +3474,17 @@ L.marker([50.505, 30.57], {icon: myIcon}).addTo(map);</code></pre>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code><b>shadowSize</b></code></td>
|
||||
<td><code><a href="#point">Point</a></code>
|
||||
<td><code><a href="#point">Point</a></code></td>
|
||||
<td>Size of the shadow image in pixels.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code><b>shadowAnchor</b></code></td>
|
||||
<td><code><a href="#point">Point</a></code>
|
||||
<td><code><a href="#point">Point</a></code></td>
|
||||
<td>The coordinates of the "tip" of the shadow (relative to its top left corner) (the same as <code>iconAnchor</code> if not specified).</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code><b>popupAnchor</b></code></td>
|
||||
<td><code><a href="#point">Point</a></code>
|
||||
<td><code><a href="#point">Point</a></code></td>
|
||||
<td>The coordinates of the point from which popups will "open", relative to the icon anchor.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
@ -3533,12 +3538,12 @@ L.marker([50.505, 30.57], {icon: myIcon}).addTo(map);</code></pre>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code><b>iconSize</b></code></td>
|
||||
<td><code><a href="#point">Point</a></code>
|
||||
<td><code><a href="#point">Point</a></code></td>
|
||||
<td>Size of the icon in pixels. Can be also set through CSS.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code><b>iconAnchor</b></code></td>
|
||||
<td><code><a href="#point">Point</a></code>
|
||||
<td><code><a href="#point">Point</a></code></td>
|
||||
<td>The coordinates of the "tip" of the icon (relative to its top left corner). The icon will be aligned so that this point is at the marker's geographical location. Centered by default if size is specified, also can be set in CSS with negative margins.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
@ -5087,17 +5092,17 @@ fx.run({left: '300px', top: '500px'});</code></pre>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code><b>start</b></code></td>
|
||||
<td><code><a href="#event">Event</a></code>
|
||||
<td><code><a href="#event">Event</a></code></td>
|
||||
<td>Fired when the animation starts.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code><b>step</b></code></td>
|
||||
<td><code><a href="#event">Event</a></code>
|
||||
<td><code><a href="#event">Event</a></code></td>
|
||||
<td>Fired continuously during the animation.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code><b>end</b></code></td>
|
||||
<td><code><a href="#event">Event</a></code>
|
||||
<td><code><a href="#event">Event</a></code></td>
|
||||
<td>Fired when the animation ends.</td>
|
||||
</tr>
|
||||
</table>
|
||||
@ -5176,22 +5181,22 @@ draggable.enable();
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code><b>dragstart</b></code></td>
|
||||
<td><code><a href="#event">Event</a></code>
|
||||
<td><code><a href="#event">Event</a></code></td>
|
||||
<td>Fired when the dragging starts.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code><b>predrag</b></code></td>
|
||||
<td><code><a href="#event">Event</a></code>
|
||||
<td><code><a href="#event">Event</a></code></td>
|
||||
<td>Fired continuously during dragging <em>before</em> each corresponding update of the element position.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code><b>drag</b></code></td>
|
||||
<td><code><a href="#event">Event</a></code>
|
||||
<td><code><a href="#event">Event</a></code></td>
|
||||
<td>Fired continuously during dragging.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code><b>dragend</b></code></td>
|
||||
<td><code><a href="#event">Event</a></code>
|
||||
<td><code><a href="#event">Event</a></code></td>
|
||||
<td>Fired when the dragging ends.</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
Loading…
Reference in New Issue
Block a user