[mirotalk] - fix: make sponsor div clickable instead of requiring precise image click
This commit is contained in:
+1
-1
@@ -1,5 +1,5 @@
|
||||
# ====================================================
|
||||
# MiroTalk P2P v.1.7.43 - Environment Configuration
|
||||
# MiroTalk P2P v.1.7.44 - Environment Configuration
|
||||
# ====================================================
|
||||
|
||||
# App environment
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
/**
|
||||
* ==============================================
|
||||
* MiroTalk P2P v.1.7.43 - Configuration File
|
||||
* MiroTalk P2P v.1.7.44 - Configuration File
|
||||
* ==============================================
|
||||
*
|
||||
* This file is the central configuration source.
|
||||
|
||||
+1
-1
@@ -45,7 +45,7 @@ dependencies: {
|
||||
* @license For commercial use or closed source, contact us at license.mirotalk@gmail.com or purchase directly from CodeCanyon
|
||||
* @license CodeCanyon: https://codecanyon.net/item/mirotalk-p2p-webrtc-realtime-video-conferences/38376661
|
||||
* @author Miroslav Pejic - miroslav.pejic.85@gmail.com
|
||||
* @version 1.7.43
|
||||
* @version 1.7.44
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
Generated
+3
-3
@@ -1,12 +1,12 @@
|
||||
{
|
||||
"name": "mirotalk",
|
||||
"version": "1.7.43",
|
||||
"version": "1.7.44",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "mirotalk",
|
||||
"version": "1.7.43",
|
||||
"version": "1.7.44",
|
||||
"license": "AGPL-3.0",
|
||||
"dependencies": {
|
||||
"@mattermost/client": "11.4.0",
|
||||
@@ -37,7 +37,7 @@
|
||||
"uuid": "13.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"mocha": "^11.3.0",
|
||||
"mocha": "^11.7.5",
|
||||
"node-fetch": "^3.3.2",
|
||||
"nodemon": "^3.1.14",
|
||||
"prettier": "3.8.1",
|
||||
|
||||
+2
-2
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "mirotalk",
|
||||
"version": "1.7.43",
|
||||
"version": "1.7.44",
|
||||
"description": "A free WebRTC browser-based video call",
|
||||
"main": "server.js",
|
||||
"scripts": {
|
||||
@@ -70,7 +70,7 @@
|
||||
"uuid": "13.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"mocha": "^11.3.0",
|
||||
"mocha": "^11.7.5",
|
||||
"node-fetch": "^3.3.2",
|
||||
"nodemon": "^3.1.14",
|
||||
"prettier": "3.8.1",
|
||||
|
||||
+1
-1
@@ -79,7 +79,7 @@ let brand = {
|
||||
},
|
||||
about: {
|
||||
imageUrl: '../images/mirotalk-logo.gif',
|
||||
title: 'WebRTC P2P v1.7.43',
|
||||
title: 'WebRTC P2P v1.7.44',
|
||||
html: `
|
||||
<button
|
||||
id="support-button"
|
||||
|
||||
+2
-2
@@ -15,7 +15,7 @@
|
||||
* @license For commercial use or closed source, contact us at license.mirotalk@gmail.com or purchase directly from CodeCanyon
|
||||
* @license CodeCanyon: https://codecanyon.net/item/mirotalk-p2p-webrtc-realtime-video-conferences/38376661
|
||||
* @author Miroslav Pejic - miroslav.pejic.85@gmail.com
|
||||
* @version 1.7.43
|
||||
* @version 1.7.44
|
||||
*
|
||||
*/
|
||||
|
||||
@@ -13738,7 +13738,7 @@ function showAbout() {
|
||||
Swal.fire({
|
||||
background: swBg,
|
||||
position: 'center',
|
||||
title: brand.about?.title && brand.about.title.trim() !== '' ? brand.about.title : 'WebRTC P2P v1.7.43',
|
||||
title: brand.about?.title && brand.about.title.trim() !== '' ? brand.about.title : 'WebRTC P2P v1.7.44',
|
||||
imageUrl: brand.about?.imageUrl && brand.about.imageUrl.trim() !== '' ? brand.about.imageUrl : images.about,
|
||||
customClass: { image: 'img-about' },
|
||||
html: `
|
||||
|
||||
+12
-12
@@ -178,18 +178,18 @@
|
||||
<h3 class="tac">This project is proudly sponsored by</h3>
|
||||
<ul class="list-reset">
|
||||
<li class="reveal-from-left" data-reveal-delay="150">
|
||||
<div class="clients-logo">
|
||||
<a
|
||||
href="https://recall.ai/?utm_source=mirotalkp2p&utm_medium=sponsorship"
|
||||
target="_blank"
|
||||
data-umami-event="RecallButton"
|
||||
>
|
||||
<img
|
||||
class="clients-size-logo"
|
||||
src="../sponsors/RecallAI.svg"
|
||||
alt="Recall.ai"
|
||||
/>
|
||||
</a>
|
||||
<div
|
||||
class="clients-logo"
|
||||
style="cursor: pointer"
|
||||
onclick="
|
||||
window.open(
|
||||
'https://recall.ai/?utm_source=mirotalkp2p&utm_medium=sponsorship',
|
||||
'_blank'
|
||||
)
|
||||
"
|
||||
data-umami-event="RecallButton"
|
||||
>
|
||||
<img class="clients-size-logo" src="../sponsors/RecallAI.svg" alt="Recall.ai" />
|
||||
</div>
|
||||
<div class="mt-16 tac">
|
||||
<a
|
||||
|
||||
Reference in New Issue
Block a user