儀表板
文件庫
filestore
活動
搜尋
登入
pcalife
/
PAM
保誠-保戶業務員媒合平台
匯總
相關日誌
提交
目錄
檔案區
分支(forks)
比對
究查
|
歷程
|
原始
TODO#129053 快速篩選 1. 增加isMobileDevice()判斷, desktop使用dialog, mobile使用drawer
Mila
2021-11-04
fbe19f8084aeba350da5c810876a7d2175a447df
[pcalife/PAM.git]
/
PAMapp
/
assets
/
ts
/
device.ts
1
2
3
4
5
export function isMobileDevice() {
let mobileDevices = ['Android', 'webOS', 'iPhone', 'iPad', 'iPod', 'BlackBerry', 'Windows Phone'];
console.log(navigator.userAgent);
return mobileDevices.some(e => navigator.userAgent.match(e));
}