Advertisement
draho

Sudo k noze

Feb 22nd, 2022 (edited)
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. {
  2.   document.querySelector("form[name=txt]").addEventListener('submit', e => {
  3.     const txt = document.querySelector('#say').value.normalize("NFD").replace(/[\u0300-\u036f]/g, "")
  4.     if (txt.match(/Sudo(,|:) (k noze|ke mne|pojd sem|sem|tady|zde|prijd)( |\b)/ig)) {
  5.       const room = location.pathname.split("/").pop()
  6.       try {
  7.         console.log("Sudo!")
  8.         fetch(`http://localhost:2760/join/${room}`)
  9.       } catch(e) {/* supress cors error */}
  10.     }
  11.   }, {capture: true})
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement