pages/_includes/scripts/wechatModal.html
Johannes Hörner cba3ad27fb
add WeChat to socials (#1730)
When the WeChat icon in socials is clicked, a picture of your WeChat QR
code is shown in the center of the screen. The actual picture of your QR
code has to be uploaded.
2023-09-17 15:49:27 -04:00

20 lines
383 B
HTML

{% if site.wechat_qr %}
<!-- WeChat Modal -->
<script>
var wechatModal = document.getElementById("WeChatMod");
var wechatBtn = document.getElementById("WeChatBtn");
wechatBtn.onclick = function() {
wechatModal.style.display = "block";
}
window.onclick = function(event) {
if (event.target == wechatModal) {
wechatModal.style.display = "none";
}
}
</script>
{% endif %}