web/source/src/app/mobile.service.ts
Tara Wilson acc339768e Adding mobile service
Adding mobile components
2025-02-19 21:07:32 -05:00

14 lines
275 B
TypeScript

import { Injectable } from '@angular/core';
@Injectable({
providedIn: 'root'
})
export class MobileService {
/**
* Determines if the user is using a small resolution or mobile browser
*/
public isMobile(): boolean {
return (window.innerWidth <= 667 );
}
}