mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-20 05:16:07 +00:00
21 lines
292 B
TypeScript
21 lines
292 B
TypeScript
|
|
import { Injectable } from '@angular/core';
|
||
|
|
import { Platform } from '@ionic/angular';
|
||
|
|
|
||
|
|
@Injectable({
|
||
|
|
providedIn: 'root'
|
||
|
|
})
|
||
|
|
export class DeviceService {
|
||
|
|
|
||
|
|
constructor( private platform: Platform,) { }
|
||
|
|
|
||
|
|
|
||
|
|
isTableDivice() {
|
||
|
|
return false;
|
||
|
|
}
|
||
|
|
|
||
|
|
isDesktop() {
|
||
|
|
|
||
|
|
return true;
|
||
|
|
}
|
||
|
|
}
|