please, how to minimize left panel in JS ?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • iioi
    Member
    • Jun 2022
    • 48

    please, how to minimize left panel in JS ?

    please, how to minimize left panel in JS (screenshot in attach)?
    I'll call it in afterRender: function ()
  • yuri
    Member
    • Mar 2014
    • 8442

    #2
    Code:
    if (!$(document.body).hasClass('minimized')) {
        $('#navbar a.minimizer').click();
    }​
    If you find EspoCRM good, we would greatly appreciate if you could give the project a star on GitHub. We believe our work truly deserves more recognition. Thanks.

    Comment

    • iioi
      Member
      • Jun 2022
      • 48

      #3
      thanks a lot.

      Comment

      Working...