TouchList Class Reference
| Inherits from | JavaScript Object |
Overview
TouchList is implemented to match the W3C specification. It’s an immutable list of Touch instances.
Elements can be accessed using the item() function or via the array style operator:
var touch = touchList.item(0);
//or
var touch = touchList[0];
Overview of Tasks
Attributes
- Name
-
length
- Type
-
int
- Writability
-
readonly
Functions
- Signature
-
identifiedTouch(identifier) -
item(index)
- Return Type
-
Touch -
Touch