Skip to content

Commit

Permalink
Minor fixes.
Browse files Browse the repository at this point in the history
Clean up unused code

Signed-off-by: Armored Dragon <[email protected]>
  • Loading branch information
Armored-Dragon committed Mar 4, 2024
1 parent 6bc445d commit e11a302
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 6 deletions.
1 change: 0 additions & 1 deletion applications/armored-chat/armored_chat.js
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,6 @@

case "open_url":
new OverlayWebWindow({ source: parsed.url.toString(), width: 500, height: 400 });
// Window.openUrl(parsed.url.toString());
break;

case "setting_update":
Expand Down
2 changes: 0 additions & 2 deletions applications/armored-chat/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,6 @@
if (yt_url) {
yt_url.forEach((url) => {
message_embeds += `<iframe class="z-depth-2" width='420' height='236' src='https://www.youtube.com/embed/${url.toString().split("/")[3]}' frameborder='0'></iframe><br>`;
// message.message = message.message.replace(url, "");
});
}

Expand All @@ -204,7 +203,6 @@
if (image_link) {
image_link.forEach((image) => {
message_embeds += `<span class='image-container'><img src='${image}'></span><br>`;
// message.message = message.message.replace(image, "");
});
}

Expand Down
3 changes: 0 additions & 3 deletions applications/armored-chat/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -132,9 +132,6 @@ body {
// height: 100%;
max-width: 400px;
max-height: 300px;

// max-width: 400px;
// max-height: 300px;
}
}
}
Expand Down

0 comments on commit e11a302

Please sign in to comment.