Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • todhost Friend
    #191362

    There is a menu hidden just by the left of the logo. I will like it to be exposed so i dont need to click to view it.

    Thank you

    Wall Crasher Developer
    #509005

    Hi todhost,

    You can change the behavior to hover instead of click as below.
    Open file templatesja_magzjsscript.js and replace

    btnsidenav.on('click', function(){
    sidenav.modal('toggle');
    return false;
    });

    with

    if(Magz.hasTouch){
    btnsidenav.on('click', function(){
    sidenav.modal('toggle');
    return false;
    });
    } else {

    btnsidenav.on('mouseenter', function(){
    clearTimeout(sid);

    if($.support.transition){
    sidenav.trigger($.support.transition.end);
    }

    sidenav.modal('show');

    return false;
    }).on('mouseleave', function(){

    clearTimeout(sid);
    sid = setTimeout(function(){

    if($.support.transition){
    sidenav.trigger($.support.transition.end);
    }

    sidenav.modal('hide');

    }, 200);

    });

    sidenav.on('mouseleave', function(){
    clearTimeout(sid);

    sid = setTimeout(function(){
    if($.support.transition){
    sidenav.trigger($.support.transition.end);
    }

    sidenav.modal('hide');
    }, 200);

    }).on('mouseenter', function(){
    clearTimeout(sid);
    });
    }

    Hope it helps.

    Regards

    todhost Friend
    #509125

    Hello,
    It disabled the click function but did not show the menu with mouse over.

    Wall Crasher Developer
    #509126

    Hi todhost,

    Have you change the javascript code as I said above?
    You can wait until the next release. This fix is included.

    Regards

Viewing 4 posts - 1 through 4 (of 4 total)

This topic contains 4 replies, has 2 voices, and was last updated by  Wall Crasher 10 years, 7 months ago.

We moved to new unified forum. Please post all new support queries in our New Forum