pages/_includes/scripts/wechatModal.liquid
2024-11-10 13:28:15 -03:00

21 lines
505 B
Plaintext

{% if site.wechat_qr %}
<!-- WeChat Modal -->
<script>
var wechatModal = document.getElementById('WeChatMod');
var wechatBtn = document.querySelectorAll('[id="WeChatBtn"]');
for (var i = 0; i < wechatBtn.length; i++) {
wechatBtn[i].onclick = function () {
wechatModal.style.display = 'block';
};
}
window.onclick = function (event) {
if (event.target == wechatModal) {
wechatModal.style.display = 'none';
}
};
</script>
{% endif %}