LoginSignup
0
0

More than 3 years have passed since last update.

angularのcoreuiのサイドバーを開閉する関数

Posted at

angularのcoreuiのサイドバーを開閉する関数について

function coreUiSidebarOpen(open: boolean, renderer: Renderer2) {
    if (open) {
        renderer.addClass(document.body, "sidebar-lg-show");
    } else {
        renderer.removeClass(document.body, "sidebar-lg-show");
    }
}

lgの部分は、[sidebarToggler]で指定した内容に適宜入れ替えること。

誰かのお役に立てば。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0