ccooollll
3 May 2011, 11:57 AM
Unable to access native touch events, unmodified by the TouchEventManager
this.mon(this.el, {
touchstart: function(e){
console.log(e);
},
scope: this,
normalized: false
});
In the console it shows 'undefined'.
so the touch event doesn't have non-normalized form for event?
this.mon(this.el, {
touchstart: function(e){
console.log(e);
},
scope: this,
normalized: false
});
In the console it shows 'undefined'.
so the touch event doesn't have non-normalized form for event?