aboutsummaryrefslogtreecommitdiff
path: root/node_modules/montage/ui/composer/swipe-composer.js
diff options
context:
space:
mode:
authorValerio Virgillito2012-02-07 13:28:17 -0800
committerValerio Virgillito2012-02-07 22:34:12 -0800
commite5579374ff39b80b8c0c69faba37f6f581758fe0 (patch)
tree5ec9421e15fdd1d5029a453991fa01493138c361 /node_modules/montage/ui/composer/swipe-composer.js
parent668510892537eaaeb2e11520831d87b44b2489b7 (diff)
downloadninja-e5579374ff39b80b8c0c69faba37f6f581758fe0.tar.gz
updated montage v.0.6 to the latest changes.
Signed-off-by: Valerio Virgillito <valerio@motorola.com>
Diffstat (limited to 'node_modules/montage/ui/composer/swipe-composer.js')
-rw-r--r--node_modules/montage/ui/composer/swipe-composer.js24
1 files changed, 13 insertions, 11 deletions
diff --git a/node_modules/montage/ui/composer/swipe-composer.js b/node_modules/montage/ui/composer/swipe-composer.js
index 4eb9ee3b..2d9fe266 100644
--- a/node_modules/montage/ui/composer/swipe-composer.js
+++ b/node_modules/montage/ui/composer/swipe-composer.js
@@ -208,17 +208,19 @@ exports.SwipeComposer = Montage.create(Composer, /** @lends module:montage/ui/co
208 } 208 }
209 } 209 }
210 210
211 swipeEvent = document.createEvent("CustomEvent"); 211 if (dX != 0 || dY != 0) {
212 swipeEvent.initCustomEvent("swipemove", true, false, null); 212 swipeEvent = document.createEvent("CustomEvent");
213 swipeEvent.direction = direction; 213 swipeEvent.initCustomEvent("swipemove", true, false, null);
214 swipeEvent.angle = this._startSwipeAngle; 214 swipeEvent.direction = direction;
215 swipeEvent.velocity = this._findVelocity((event.timeStamp - this._startTimestamp)); 215 swipeEvent.angle = this._startSwipeAngle;
216 swipeEvent.startX = this._startX; 216 swipeEvent.velocity = this._findVelocity((event.timeStamp - this._startTimestamp));
217 swipeEvent.startY = this._startY; 217 swipeEvent.startX = this._startX;
218 swipeEvent.dX = this._deltaX; 218 swipeEvent.startY = this._startY;
219 swipeEvent.dY = this._deltaY; 219 swipeEvent.dX = this._deltaX;
220 220 swipeEvent.dY = this._deltaY;
221 this.dispatchEvent(swipeEvent); 221
222 this.dispatchEvent(swipeEvent);
223 }
222 } 224 }
223 }, 225 },
224 226