Fixed private methods and injections

This commit is contained in:
Sercan Yemen 2018-06-15 17:46:41 +03:00
parent 65523c3c95
commit 9efab7ed20
2 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@
<span class="title">Theme Options</span>
<button mat-icon-button class="close-button" (click)="_toggleSidebarOpen('themeOptionsPanel')">
<button mat-icon-button class="close-button" (click)="toggleSidebarOpen('themeOptionsPanel')">
<mat-icon>close</mat-icon>
</button>

View File

@ -106,7 +106,7 @@ export class AppComponent implements OnInit, OnDestroy
*
* @param key
*/
private toggleSidebarOpen(key): void
toggleSidebarOpen(key): void
{
this._fuseSidebarService.getSidebar(key).toggleOpen();
}