Skip to content

Commit

Permalink
[mirotalkwebrtc] - fix, update dep
Browse files Browse the repository at this point in the history
  • Loading branch information
miroslavpejic85 committed Jun 7, 2024
1 parent 39ae6f9 commit a98b345
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
2 changes: 1 addition & 1 deletion frontend/js/client.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* @license For private project or commercial purposes contact us at: [email protected] or purchase it directly via Code Canyon:
* @license https://codecanyon.net/item/a-selfhosted-mirotalks-webrtc-rooms-scheduler-server/42643313
* @author Miroslav Pejic - [email protected]
* @version 1.0.81
* @version 1.0.82
*/

const isMobile = !!/Android|webOS|iPhone|iPad|iPod|BB10|BlackBerry|IEMobile|Opera Mini|Mobile|mobile/i.test(
Expand Down
12 changes: 12 additions & 0 deletions frontend/js/home.js
Original file line number Diff line number Diff line change
Expand Up @@ -134,10 +134,22 @@ function showSignUp() {
login.style.transform = 'translateY(-180px)';
loginLabel.style.transform = 'scale(0.6)';
signupLabel.style.transform = 'scale(1)';
cleanLoginInput();
}

function showLogin() {
login.style.transform = 'translateY(-550px)';
loginLabel.style.transform = 'scale(1)';
signupLabel.style.transform = 'scale(0.6)';
cleanSignUpInput();
}

function cleanLoginInput() {
loginUsernameInput.value = '';
loginEmailIdInput.value = '';
}

function cleanSignUpInput() {
signupUsernameInput.value = '';
signupEmailIdInput.value = '';
}
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mirotalkwebrtc",
"version": "1.0.81",
"version": "1.0.82",
"description": "MiroTalk WebRTC admin",
"main": "server.js",
"scripts": {
Expand Down Expand Up @@ -49,7 +49,7 @@
"ngrok": "^5.0.0-beta.2",
"nodemailer": "^6.9.13",
"swagger-ui-express": "^5.0.1",
"twilio": "^5.1.0"
"twilio": "^5.1.1"
},
"devDependencies": {
"nodemon": "^3.1.3",
Expand Down

0 comments on commit a98b345

Please sign in to comment.