mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-04-04 15:41:37 +00:00
31 lines
817 B
TypeScript
31 lines
817 B
TypeScript
import { Component } from '@angular/core';
|
|
import { FuseComponentsComponent } from 'app/modules/admin/ui/fuse-components/fuse-components.component';
|
|
|
|
@Component({
|
|
selector : 'card',
|
|
templateUrl: './card.component.html',
|
|
styles : ['']
|
|
})
|
|
export class CardComponent
|
|
{
|
|
/**
|
|
* Constructor
|
|
*/
|
|
constructor(private _fuseComponentsComponent: FuseComponentsComponent)
|
|
{
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------------------------------
|
|
// @ Public methods
|
|
// -----------------------------------------------------------------------------------------------------
|
|
|
|
/**
|
|
* Toggle the drawer
|
|
*/
|
|
toggleDrawer(): void
|
|
{
|
|
// Toggle the drawer
|
|
this._fuseComponentsComponent.matDrawer.toggle();
|
|
}
|
|
}
|