Created
December 1, 2011 14:18
-
-
Save wei-lee/1417049 to your computer and use it in GitHub Desktop.
Sencha touch for BB6 non-touch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//In Sencha-debug.js, around line 18131, inside Ext.gesture.Manager, change it to this: | |
//if (!Ext.supports.Touch) { | |
if (!Ext.supports.Touch || Ext.is.Blackberry) { | |
Ext.apply(this.eventNames, { | |
start: 'mousedown', | |
move: 'mousemove', | |
end: 'mouseup' | |
}); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment