Skip to content

Instantly share code, notes, and snippets.

@wei-lee
Created December 1, 2011 14:18
Show Gist options
  • Save wei-lee/1417049 to your computer and use it in GitHub Desktop.
Save wei-lee/1417049 to your computer and use it in GitHub Desktop.
Sencha touch for BB6 non-touch
//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