You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
710 B

4 years ago
4 years ago
  1. if(navigator.userAgent.search('MicroMessenger') !== -1)
  2. location.href = `https://closed.social/tools/safe_jump/?go=${encodeURIComponent(location.href)}&t=${encodeURIComponent(document.title)}`;
  3. var em = document.getElementById("registration_user_email");
  4. if(!em)
  5. em = document.getElementById("user_email");
  6. var ap = em.nextSibling;
  7. em.addEventListener("blur", function( event ) {
  8. if(ap.style.display != 'none' && em.value) {
  9. em.value+=ap.innerText;
  10. ap.style.display = 'none';
  11. //alert('注意:清华邮箱收取外部邮件会有至多十分钟的延迟,完成注册后请稍后再查收邮件。请务必确保邮箱正确,闭社已经遇到了大量无效邮箱(例如漏掉了数字)')
  12. }
  13. });