diff --git a/www/client.js b/www/client.js
index fd82f2a4..05d58b53 100644
--- a/www/client.js
+++ b/www/client.js
@@ -406,6 +406,7 @@ function manageButtons() {
swapCameraBtn();
screenShareBtn();
sendMsgBtn();
+ aboutBtn();
leaveRoomBtn();
buttonsOpacity();
}
@@ -488,6 +489,15 @@ function sendMsgBtn() {
});
}
+// =====================================================
+// about button click event
+// =====================================================
+function aboutBtn() {
+ document.getElementById("aboutBtn").addEventListener("click", (e) => {
+ about();
+ });
+}
+
// =====================================================
// end call button click event
// =====================================================
@@ -712,6 +722,28 @@ function copyRoomURL() {
document.body.removeChild(tmpInput);
}
+// =====================================================
+// about info
+// =====================================================
+function about() {
+ Swal.fire({
+ background: "black",
+ position: "center",
+ title: 'Made with ❤️',
+ text: 'https://github.com/miroslavpejic85/mirotalk',
+ imageUrl: loaderGif,
+ imageWidth: 320,
+ imageHeight: 240,
+ imageAlt: 'Custom image',
+ showClass: {
+ popup: 'animate__animated animate__fadeInDown'
+ },
+ hideClass: {
+ popup: 'animate__animated animate__fadeOutUp'
+ }
+ })
+}
+
// =====================================================
// Leave the Room and create a new one
// =====================================================
diff --git a/www/index.html b/www/index.html
index e211a08d..a2ecbf47 100755
--- a/www/index.html
+++ b/www/index.html
@@ -76,6 +76,7 @@
class="fas fa-desktop"
>
+