aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--public/scripts/chat.js6
-rw-r--r--public/styles/style.sass1
-rw-r--r--views/index.pug2
3 files changed, 8 insertions, 1 deletions
diff --git a/public/scripts/chat.js b/public/scripts/chat.js
index fa70606..0cb5449 100644
--- a/public/scripts/chat.js
+++ b/public/scripts/chat.js
@@ -173,7 +173,7 @@ function chat() {
if (message.type === 'text') {
await encryption.storeMsg(connectedPeer.peer, message.data, passphrase);
await encryption.decrypt(message.data, await encryption.get(connectedPeer.peer), await encryption.getPrivate(), passphrase)
- .then(plaintext => $('#messages').append(`${plaintext}<br>`));
+ .then(plaintext => $('#messages').append(`<span>${plaintext}</span><br>`));
} else if (message.type === 'key') {
await encryption.store(connectedPeer.peer, message.data)
}
@@ -243,6 +243,10 @@ function chat() {
$('#add_contact').on('click', () => addContact());
$('#logout').on('click', () => location.reload(true));
$('#delete').on('click', () => deleteAccount());
+ $('#anonymize').on('click', () => {
+ peer.disconnect();
+ swal('Disconnected from broker server!', 'You will still be able to send and receive messages.', 'success')
+ });
$('#call').on('click', () => getMediaStream(stream => {
call = peer.call(peerId, stream); // TODO: Encrypt call
initCall(call)
diff --git a/public/styles/style.sass b/public/styles/style.sass
index 6019deb..a7feeac 100644
--- a/public/styles/style.sass
+++ b/public/styles/style.sass
@@ -35,6 +35,7 @@ html, body
width: 50px
margin: 20px
border-radius: 100%
+ transition: background-color .3s linear
.message-input
width: 100%
diff --git a/views/index.pug b/views/index.pug
index 38d4d2d..d58b206 100644
--- a/views/index.pug
+++ b/views/index.pug
@@ -14,6 +14,8 @@ block content
i.fas.fa-phone
button.button.action-button.is-big.is-outlined.is-warning#logout
i.fas.fa-sign-out-alt
+ button.button.action-button.is-big.is-outlined.is-black#anonymize
+ i.fas.fa-mask
button.button.action-button.is-big.is-outlined.is-danger#delete
i.fas.fa-trash