fixed tests

This commit is contained in:
Eric Rowell
2012-07-27 18:41:15 -07:00
parent eccd8b7e64
commit 1585cc3620
4 changed files with 17 additions and 30 deletions

View File

@@ -3,7 +3,7 @@
* http://www.kineticjs.com/
* Copyright 2012, Eric Rowell
* Licensed under the MIT or GPL Version 2 licenses.
* Date: Jul 26 2012
* Date: Jul 27 2012
*
* Copyright (C) 2011 - 2012 by Eric Rowell
*
@@ -3455,9 +3455,9 @@ Kinetic.Stage = Kinetic.Container.extend({
},
_touchmove: function(evt) {
evt.preventDefault();
that.touchEnd = false;
that.touchMove = true;
that._handleStageEvent(evt);
this.touchEnd = false;
this.touchMove = true;
this._handleStageEvent(evt);
// start drag and drop
this._startDrag(evt);

File diff suppressed because one or more lines are too long