儀表板
文件庫
filestore
活動
搜尋
登入
pcalife
/
PAM
保誠-保戶業務員媒合平台
匯總
相關日誌
提交
目錄
檔案區
分支(forks)
比對
究查
|
歷程
|
原始
Fixed#134639 修正[ 顧問管理流程 ] 查看帳號資訊 : 編輯個人理念、個人背景、得獎經歷的文字跑版
HelenHuang
2022-01-22
11253e5c9c81f05fec25d70974a2218462fb43e5
[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();