Merge pull request 'fix: make avatars not draggable and selectable' (#11) from Cyber/LinkUp-P2P-Chat:main into main

Reviewed-on: snxraven/LinkUp-P2P-Chat#11

Good Job!
This commit is contained in:
snxraven 2024-06-15 17:50:47 +00:00
commit 9d759e5af3
2 changed files with 5 additions and 1 deletions

5
app.js
View File

@ -631,6 +631,7 @@ function addFileMessage(from, fileName, fileUrl, fileType, avatar, topic) {
const $img = document.createElement('img');
$img.src = updatePortInUrl(avatar) || 'https://via.placeholder.com/40';
$img.classList.add('avatar');
$img.draggable = false;
$div.appendChild($img);
const $content = document.createElement('div');
@ -695,6 +696,7 @@ function onMessageAdded(from, message, avatar, topic, timestamp) {
const $img = document.createElement('img');
$img.src = updatePortInUrl(avatar) || 'https://via.placeholder.com/40'; // Default to a placeholder image if avatar URL is not provided
$img.classList.add('avatar');
$img.draggable = false;
$div.appendChild($img);
const $content = document.createElement('div');
@ -777,6 +779,7 @@ function addAudioMessage(from, audioUrl, avatar, topic) {
const $img = document.createElement('img');
$img.src = updatePortInUrl(avatar) || 'https://via.placeholder.com/40';
$img.classList.add('avatar');
$img.draggable = false;
$div.appendChild($img);
const $content = document.createElement('div');
@ -939,4 +942,4 @@ async function connectToAllRooms() {
// Call this function when loading the rooms initially
renderRoomList();
initialize();
initialize();

View File

@ -444,6 +444,7 @@ main {
border-radius: 50%;
margin-right: 0.5rem;
border: 2px solid #464343;
user-select: none;
}
.message-content {