puikinsh / Bootstrap-Admin-Template

Metis - Free Bootstrap Admin Dashboard Template
https://colorlib.com/polygon/metis/
MIT License
2.72k stars 1.31k forks source link

Need Left Menu to Start with Icons #74

Closed CGB0 closed 7 years ago

CGB0 commented 7 years ago

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 7 years ago

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');
    });