Added popups

This commit is contained in:
2021-02-03 00:26:54 +01:00
parent 03e1490721
commit 3afcb45871
6 changed files with 90 additions and 3 deletions

7
js/popup.js Normal file
View File

@@ -0,0 +1,7 @@
class Popup {
constructor(start, end, text) {
this.start = start;
this.end = end;
this.text = text;
}
}