puikinsh/Bootstrap-Admin-Template

Need Left Menu to Start with Icons

Closed this issue · 1 comments

CGB0 commented

The data displayed is fairly large and on a 1024 ipad screen I want the left menu to automatically show icons only if the screen size is less than 1200 wide.

Please see the screen captures.

Thanks,
Colin

image

image

CGB0 commented

Fixed this by simulating a button click.

The button id is menu-toggle so the following code after the document is ready..

$(document)
    .ready(function ()
    {
        if ($(window).width() < 1250)
            $('#menu-toggle').trigger('click');
    });