Search code examples
javascriptextjssencha-touchsencha-touch-2sencha-touch-2.1

Sencha Touch - menu and edge swipes errors


I'm wondering if anyone has found a fix for the issue, when the menu is initialized but has not been shown yet and the user makes edge swipes what leads to ST throwing errors: Uncaught TypeError: Cannot read property 'on' of undefined.

Please see here what I mean (open console and make edge swipes): https://fiddle.sencha.com/#fiddle/3vq

More about that: http://www.sencha.com/forum/showthread.php?281225


Solution

  • Hot fix for Sencha Touch 2.4.1 side menu slide issue TOUCH-5328:

    replace in touch\src\viewport\Default.js line 1043

    if (checkMenu.isHidden() !== false) {
    

    with

    if (checkMenu.isHidden() == false) {