UNPKG
typecho-theme-sagiri
Version:
latest (1.2.2)
1.2.2
1.2.1
1.2.0
1.1.9
1.1.7
1.1.6
1.1.5
1.1.4
Lovely theme for Typecho.
github.com/shiyiya/typecho-theme-sagiri
shiyiya/typecho-theme-sagiri
typecho-theme-sagiri
/
js
/
modules
/
donpay.js
12 lines
(11 loc)
•
284 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
var
btnPay =
document
.
querySelector
(
'.btn-pay'
)
if
(btnPay) { btnPay.
addEventListener
(
'click'
,
function
(
e
) {
var
qr =
document
.
querySelector
(
'.qr'
)
if
(qr.
style
.
height
==
'0px'
) { qr.
style
.
height
=
'auto'
}
else
{ qr.
style
.
height
=
0
} }) }