儀表板
文件庫
filestore
活動
搜尋
登入
pcalife
/
PAM
保誠-保戶業務員媒合平台
匯總
相關日誌
提交
目錄
檔案區
分支(forks)
比對
究查
|
歷程
|
原始
Fixed #135239 修正 [ 顧問管理流程 ] 預約資訊的結案、通知約訪 button 沒有置中
HelenHuang
2022-02-15
b4488eab87aa066417f14aabb65adbc38b0eeccf
[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();