mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-14 21:43:04 +00:00
Renamed isMobileView() into isXsOrSm()
This commit is contained in:
@@ -30,12 +30,15 @@ export class AuthNavMenuComponent implements OnInit {
|
||||
*/
|
||||
public loading: Observable<boolean>;
|
||||
|
||||
public isXsOrSm$: Observable<boolean>;
|
||||
|
||||
public showAuth = Observable.of(false);
|
||||
|
||||
public user: Observable<Eperson>;
|
||||
|
||||
constructor(private store: Store<AppState>,
|
||||
public windowService: HostWindowService) {
|
||||
private windowService: HostWindowService) {
|
||||
this.isXsOrSm$ = this.windowService.isXsOrSm();
|
||||
}
|
||||
|
||||
ngOnInit(): void {
|
||||
|
Reference in New Issue
Block a user