儀表板
文件庫
filestore
活動
搜尋
登入
pcalife
/
PAM
保誠-保戶業務員媒合平台
匯總
相關日誌
提交
目錄
檔案區
分支(forks)
比對
究查
|
歷程
|
原始
Update#135214 [平台滿意度] 調整填寫滿意度 overall 頁面
HelenHuang
2022-02-15
dc834c0bb42b788888212d5a58eeff0d98373bec
[pcalife/PAM.git]
/
PAMapp
/
shared
/
services
/
utils.service.ts
1
2
3
4
5
6
7
8
9
10
class UtilsService {
isMobileDevice(): boolean {
const mobileDevices = ['Android', 'webOS', 'iPhone', 'iPad', 'iPod', 'BlackBerry', 'Windows Phone'];
return mobileDevices.some(e => navigator.userAgent.match(e));
}
}
export default new UtilsService();