fuse-angular/src/app/main/navbar/navbar.service.ts

22 lines
262 B
TypeScript
Raw Normal View History

2017-07-13 14:43:22 +00:00
import { Injectable } from '@angular/core';
2017-07-12 12:35:07 +00:00
@Injectable()
2017-07-13 14:43:22 +00:00
export class FuseNavbarService
2017-07-12 12:35:07 +00:00
{
navBarRef;
constructor()
{
}
setNavBar(ref)
{
this.navBarRef = ref;
}
getNavBar()
{
return this.navBarRef;
}
}