CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
ProdigyPNP

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.

GitHub Repository: ProdigyPNP/ProdigyMathGameHacking
Path: blob/master/cheatGUI/src/utils/chat.ts
Views: 723
1
2
let chat : Window | null = null;
3
4
export default function openChat () : void {
5
6
if (chat === null) {
7
open()
8
} else {
9
if (chat.closed) { open() }
10
else { chat.focus() }
11
}
12
13
14
}
15
16
function open () : void {
17
// @ts-expect-error
18
chat = window.open("https://chat.prodigypnp.com:8443/", null, `
19
height=800,
20
width=350,
21
status=yes,
22
toolbar=no,
23
menubar=no,
24
location=no
25
`);
26
}
27