课程详情课件下载

This commit is contained in:
unknown
2023-07-30 16:00:34 +08:00
parent 061e9a7057
commit cf1fc2519c
2 changed files with 18 additions and 2 deletions

View File

@@ -85,3 +85,8 @@ export function isWechat() {
let ua = window.navigator.userAgent.toLowerCase();
return /micromessenger/.test(ua);
}
export function isIOS() {
var u = navigator.userAgent;
return !!u.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/);
}