1

I'm attempting to make changes to Sencha Touch's javascript source to increase scrolling performance.

What's the standard practice for this?

I've tried changing the source in my workspace/touch/resources/src or straight up changing the sencha-touch-all-debug.js file. How do I issue a build to take these changes? I can't figure out where the build process is currently pulling the source from as my changes do not make it into the build at all.

Thanks,
Jonny

Autonomy
  • 402
  • 4
  • 13

1 Answers1

3

There's a few ways you can attempt this, but ultimately you will create an override and include this file in your application.

Ext.define('MyApp.override.SomeClass', {
    override : 'Ext.some.Class',

    someMethod : function() {}
});

That's the recommended way. Some additional resources for you:

arthurakay
  • 5,631
  • 8
  • 37
  • 62