We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef8df34 commit 9cc2b36Copy full SHA for 9cc2b36
scripts/script.js
@@ -1,6 +1,8 @@
1
//Enable "Add App" button for Alt1 Browser.
2
A1lib.identifyApp("appconfig.json");
3
4
+const appColor = A1lib.mixColor(0, 255, 0);
5
+
6
let reader = new Chatbox.default();
7
reader.readargs = {
8
colors: [
@@ -20,7 +22,7 @@ function showSelectedChat(chat) {
20
22
//Attempt to show a temporary rectangle around the chatbox. skip if overlay is not enabled.
21
23
try {
24
alt1.overLayRect(
- A1lib.mixColor(0, 255, 0),
25
+ appColor,
26
chat.mainbox.rect.x,
27
chat.mainbox.rect.y,
28
chat.mainbox.rect.width,
0 commit comments