FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
study/modcode/platform.js at master · ghlR/study · GitHub
ghlR
/
study
Public
forked from
bjtqti/study
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
study
/
modcode
/
platform.js
Copy path
More file actions
More file actions
Latest commit
History
History
History
23 lines (20 loc) · 615 Bytes
Breadcrumbs
study
/
modcode
/
platform.js
Copy path
File metadata and controls
23 lines (20 loc) · 615 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
function
isWechat
(
)
{
var
ua
=
navigator
.
userAgent
.
toLowerCase
(
)
;
return
/
m
i
c
r
o
m
e
s
s
e
n
g
e
r
/
i
.
test
(
ua
)
;
}
function
isQQBrowser
(
)
{
var
ua
=
navigator
.
userAgent
.
toLowerCase
(
)
;
return
/
M
o
b
i
l
e
M
Q
Q
B
r
o
w
s
e
r
/
i
.
test
(
ua
)
;
}
function
isAndroid
(
)
{
var
ua
=
navigator
.
userAgent
.
toLowerCase
(
)
;
return
/
a
n
d
r
o
i
d
/
i
.
test
(
ua
)
;
}
var
ua
=
navigator
.
userAgent
,
uv
=
navigator
.
appVersion
,
isAndroid
=
(
/
a
n
d
r
o
i
d
/
gi
)
.
test
(
uv
)
,
isTouchPad
=
(
/
h
p
-
t
a
b
l
e
t
/
gi
)
.
test
(
uv
)
,
isIphone
=
(
/
i
p
h
o
n
e
|
i
p
o
d
/
gi
)
.
test
(
ua
)
,
isIpad
=
(
/
i
p
a
d
/
gi
)
.
test
(
ua
)
,
isIOS
=
isIphone
||
isIpad
,
isIOS7
=
isIOS
&&
(
/
O
S
\s
7
/
gi
)
.
test
(
ua
)
;
Back
|
FazBrowse Home
|
New Git URL