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