• Resolved mkwprel

    (@mkwprel)


    Swiping from left to right creates a blank area on desktop screens (when hamburger menu is not visible). To workaround this with jQuery disable swiping when hamburger menu is not shown:

    jQuery(document).ready(function($) {
        if( $('#wprmenu_bar').is(':hidden') ) {
            $('body').swipe({
                swipe:function(event, direction, distance, duration, fingerCount, fingerData) {}
            });
        }
    });
Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Support Anurag

    (@anuragpradhan)

    Hello Mkwprel,

    Can you explain more details about it?
    Also share the screenshot of the issue.

    Regards,
    Anurag

    Thread Starter mkwprel

    (@mkwprel)

    Just tried to reproduce it, with and without option “Swipe” enabled the issue has disappeared. So my workaround is obsolete, thanks!

    Plugin Support Anurag

    (@anuragpradhan)

    Hello Mkwprel,

    Happy to hear that from you.
    Let me know if you have any issues.

    Regards,
    Anurag

    Plugin Support Anurag

    (@anuragpradhan)

    Hello Mkwprel,

    As your issue has been resolved we are closing the ticket.
    If you have any further question you can open a new ticket.

    Regards,
    Anurag

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Swipe Problem with blank menu area’ is closed to new replies.