Newer
Older

Alex ORLUC
committed
import { Injectable } from '@angular/core';
@Injectable({
providedIn: 'root'
})
export class AppService {
private _mobileQueryListener: () => void;
mobileQuery: MediaQueryList;
currentUser: any;

Alex ORLUC
committed
constructor() {
/*this.mobileQuery = media.matchMedia('(max-width: 768px)');
this._mobileQueryListener = () => changeDetectorRef.detectChanges();

Alex ORLUC
committed
this.mobileQuery.addListener(this._mobileQueryListener);*/

Alex ORLUC
committed
return false;
if (/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent)) {
return true;
} else {
return this.mobileQuery.matches;
}
}

Alex ORLUC
committed
/*ngOnDestroy(): void {
this.mobileQuery.removeListener(this._mobileQueryListener);

Alex ORLUC
committed
}*/