Bug 483182: fix typo in _onMouseDown, r=bcombee
--- a/mobile/chrome/content/InputHandler.js
+++ b/mobile/chrome/content/InputHandler.js
@@ -509,17 +509,17 @@ ContentPanningModule.prototype = {
_dragMove: function _dragMove(sX, sY) {
let dragData = this._dragData;
ws.dragMove(sX, sY);
},
_onMouseDown: function _onMouseDown(aEvent) {
// if we're in the process of kineticly scrolling, stop and start over
- if (this.kineticHandle != -1)
+ if (this._kineticData.kineticHandle != -1)
this._endKinetic(aEvent.screenX, aEvent.screenY);
let dragData = this._dragData;
dragData.sX = aEvent.screenX;
dragData.sY = aEvent.screenY;
dragData.dragStartTimeout = setTimeout(function(self, sX, sY) { self._dragStart(sX, sY); },