The MozMagnifyGestureUpdate event is executed periodically while processing a magnify gesture, to provide updated status information. The event's delta value represents the amount by which the gesture has moved since the MozMagnifyGestureStart or MozMagnifyGestureUpdate event.
  Note: This event is sent whenever the movement of the user's fingers exceeds the number of pixels indicated by the 
browser.gesture.pinch.threshold preference.General info
- Specification
- Addons specific
- Interface
- Event
- Bubbles
- Yes
- Cancelable
- Yes
- Target
- browser, browsers
- Default Action
- Varies (OS dependant)
Properties
| Property | Type | Description | 
|---|---|---|
| targetRead only | EventTarget | The event target (the topmost target in the DOM tree). | 
| typeRead only | DOMString | The type of event. | 
| bubblesRead only | boolean | Does the event normally bubble? | 
| cancelableRead only | boolean | Is it possible to cancel the event? | 
| viewRead only | WindowProxy | document.defaultView(thewindowof the document). | 
| detailRead only | long(float) | 0. | 
| currentTargetRead only | EventTarget (DOM element) | The node that had the event listener attached. | 
| relatedTargetRead only | EventTarget (DOM element) | For mouseover,mouseout,mouseenterandmouseleaveevents: the target of the complementary event (themouseleavetarget in the case of amouseenterevent).nullotherwise. | 
| screenXRead only | long (int) | The X coordinate of the mouse pointer in global (screen) coordinates. | 
| screenYRead only | long (int) | The Y coordinate of the mouse pointer in global (screen) coordinates. | 
| clientXRead only | long (int) | The X coordinate of the mouse pointer in local (DOM content) coordinates. | 
| clientYRead only | long (int) | The Y coordinate of the mouse pointer in local (DOM content) coordinates. | 
| buttonRead only | unsigned short (int) | The button number that was pressed when the mouse event was fired: Left button=0, middle button=1 (if present), right button=2. For mice configured for left handed use in which the button actions are reversed the values are instead read from right to left. | 
| directionRead only | unsigned long (int) | The direction of the gesture. Read only. | 
| deltaRead only | double (float) | The amount by which the gesture moved; for rotation, this value is in degrees. Positive values are clockwise and negative values are counterclockwise. For magnification, this value is implementation-specific, but the value is positive for zooming in and negative for zooming out. |