Page 1 of 1

SideBar Error

Posted: 10 Aug 2018, 23:13
by rsenra
Hi. I bought a license and I have tried this new version of Manhattan.

Everything is ok when working with a high screen resolution.

But when it has 1024 x 768 sidebar doesn't work. I tried with the demo too and I get same error.

can you check this??
thank you..

Re: SideBar Error

Posted: 11 Aug 2018, 14:05
by rsenra
it just happens with the left sidebar (main menu). the rigth one (weather) works as expected.

Re: SideBar Error

Posted: 11 Aug 2018, 14:48
by huseyinT
Thank you for your feedback.

We will check it.

Greetings,

Re: SideBar Error

Posted: 13 Aug 2018, 09:42
by mert.sincan
Fixed for next version. Please make the following changes in isMobile and isDesktop methods on layout.js?

Code: Select all

//line 412
    isDesktop: function() {
        return window.innerWidth > 1280;
    },
   
    isMobile: function() {
        return window.innerWidth <= 1280;
    },

Re: SideBar Error

Posted: 13 Aug 2018, 17:03
by rsenra
Thank you. Im gonna try this.
And thank you for the fast workaround :)

Re: SideBar Error

Posted: 14 Aug 2018, 08:17
by mert.sincan
You're welcome!