NOBUG: Fixed file access permissions
[moodle.git] / lib / yuilib / 3.13.0 / event-touch / event-touch-debug.js
blob379e5f113611bbcd39cca6b2f2ba3db78d3f6cb5
1 /*
2 YUI 3.13.0 (build 508226d)
3 Copyright 2013 Yahoo! Inc. All rights reserved.
4 Licensed under the BSD License.
5 http://yuilibrary.com/license/
6 */
8 YUI.add('event-touch', function (Y, NAME) {
10 /**
11 Adds touch event facade normalization properties (touches, changedTouches, targetTouches etc.) to the DOM event facade. Adds
12 touch events to the DOM events whitelist.
14 @example
15     YUI().use('event-touch', function (Y) {
16         Y.one('#myDiv').on('touchstart', function(e) {
17             ...
18         });
19     });
20 @module event
21 @submodule event-touch
22  */
23 var SCALE = "scale",
24     ROTATION = "rotation",
25     IDENTIFIER = "identifier",
26     win = Y.config.win,
27     GESTURE_MAP = {};
29 /**
30  * Adds touch event facade normalization properties to the DOM event facade
31  *
32  * @method _touch
33  * @for DOMEventFacade
34  * @private
35  * @param ev {Event} the DOM event
36  * @param currentTarget {HTMLElement} the element the listener was attached to
37  * @param wrapper {Event.Custom} the custom event wrapper for this DOM event
38  */
39 Y.DOMEventFacade.prototype._touch = function(e, currentTarget, wrapper) {
41     var i,l, etCached, et,touchCache;
43     Y.log("Calling facade._touch() with e = " + e, "info", "event-touch");
45     if (e.touches) {
46         Y.log("Found e.touches. Replicating on facade");
48         /**
49          * Array of individual touch events for touch points that are still in
50          * contact with the touch surface.
51          *
52          * @property touches
53          * @type {DOMEventFacade[]}
54          */
55         this.touches = [];
56         touchCache = {};
58         for (i = 0, l = e.touches.length; i < l; ++i) {
59             et = e.touches[i];
60             touchCache[Y.stamp(et)] = this.touches[i] = new Y.DOMEventFacade(et, currentTarget, wrapper);
61         }
62     }
64     if (e.targetTouches) {
65         Y.log("Found e.targetTouches. Replicating on facade", "info", "event-touch");
67         /**
68          * Array of individual touch events still in contact with the touch
69          * surface and whose `touchstart` event occurred inside the same taregt
70          * element as the current target element.
71          *
72          * @property targetTouches
73          * @type {DOMEventFacade[]}
74          */
75         this.targetTouches = [];
77         for (i = 0, l = e.targetTouches.length; i < l; ++i) {
78             et = e.targetTouches[i];
79             etCached = touchCache && touchCache[Y.stamp(et, true)];
81             this.targetTouches[i] = etCached || new Y.DOMEventFacade(et, currentTarget, wrapper);
83             if (etCached) { Y.log("Found native event in touches. Using same facade in targetTouches", "info", "event-touch"); }
84         }
85     }
87     if (e.changedTouches) {
88         Y.log("Found e.changedTouches. Replicating on facade", "info", "event-touch");
90         /**
91         An array of event-specific touch events.
93         For `touchstart`, the touch points that became active with the current
94         event.
96         For `touchmove`, the touch points that have changed since the last
97         event.
99         For `touchend`, the touch points that have been removed from the touch
100         surface.
102         @property changedTouches
103         @type {DOMEventFacade[]}
104         **/
105         this.changedTouches = [];
107         for (i = 0, l = e.changedTouches.length; i < l; ++i) {
108             et = e.changedTouches[i];
109             etCached = touchCache && touchCache[Y.stamp(et, true)];
111             this.changedTouches[i] = etCached || new Y.DOMEventFacade(et, currentTarget, wrapper);
113             if (etCached) { Y.log("Found native event in touches. Using same facade in changedTouches", "info", "event-touch"); }
114         }
115     }
117     if (SCALE in e) {
118         this[SCALE] = e[SCALE];
119     }
121     if (ROTATION in e) {
122         this[ROTATION] = e[ROTATION];
123     }
125     if (IDENTIFIER in e) {
126         this[IDENTIFIER] = e[IDENTIFIER];
127     }
130 //Adding MSPointer events to whitelisted DOM Events. MSPointer event payloads
131 //have the same properties as mouse events.
132 if (Y.Node.DOM_EVENTS) {
133     Y.mix(Y.Node.DOM_EVENTS, {
134         touchstart:1,
135         touchmove:1,
136         touchend:1,
137         touchcancel:1,
138         gesturestart:1,
139         gesturechange:1,
140         gestureend:1,
141         MSPointerDown:1,
142         MSPointerUp:1,
143         MSPointerMove:1
144     });
147 //Add properties to Y.EVENT.GESTURE_MAP based on feature detection.
148 if ((win && ("ontouchstart" in win)) && !(Y.UA.chrome && Y.UA.chrome < 6)) {
149     GESTURE_MAP.start = ["touchstart", "mousedown"];
150     GESTURE_MAP.end = ["touchend", "mouseup"];
151     GESTURE_MAP.move = ["touchmove", "mousemove"];
152     GESTURE_MAP.cancel = ["touchcancel", "mousecancel"];
157 else if (win && ("msPointerEnabled" in win.navigator)) {
158     GESTURE_MAP.start = "MSPointerDown";
159     GESTURE_MAP.end = "MSPointerUp";
160     GESTURE_MAP.move = "MSPointerMove";
161     GESTURE_MAP.cancel = "MSPointerCancel";
164 else {
165     GESTURE_MAP.start = "mousedown";
166     GESTURE_MAP.end = "mouseup";
167     GESTURE_MAP.move = "mousemove";
168     GESTURE_MAP.cancel = "mousecancel";
172  * A object literal with keys "start", "end", and "move". The value for each key is a
173  * string representing the event for that environment. For touch environments, the respective
174  * values are "touchstart", "touchend" and "touchmove". Mouse and MSPointer environments are also
175  * supported via feature detection.
177  * @property _GESTURE_MAP
178  * @type Object
179  * @static
180  */
181 Y.Event._GESTURE_MAP = GESTURE_MAP;
184 }, '3.13.0', {"requires": ["node-base"]});