-
-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[mirotalkwebrtc] - improve UI for mobile
- Loading branch information
1 parent
49bccee
commit 546a59a
Showing
7 changed files
with
118 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,9 +24,9 @@ MiroTalk WEB is a platform that allows for the management of an unlimited number | |
|
||
For demonstration purposes, below the credentials: | ||
|
||
- `Username`: demo | ||
- `Email`: [email protected] | ||
- `Password`: Demo@123 | ||
- `Username`: demo | ||
- `Email`: [email protected] | ||
- `Password`: Demo@123 | ||
|
||
--- | ||
|
||
|
@@ -182,13 +182,13 @@ Open in browser: [http://localhost:9000](http://localhost:9000) | |
|
||
<br> | ||
|
||
- `MongoDB Migrations:` For MongoDB migrations follow [this README](./database/README.md). | ||
- `MongoDB Migrations:` For MongoDB migrations follow [this README](./database/README.md). | ||
|
||
- `Ngrok:` You can start MiroTalk WEB directly from your local PC and make it accessible from any device outside your network by following [these instructions](docs/ngrok.md). | ||
- `Ngrok:` You can start MiroTalk WEB directly from your local PC and make it accessible from any device outside your network by following [these instructions](docs/ngrok.md). | ||
|
||
- `Self-hosting:` For `self-hosting MiroTalk WEB` on your own dedicated server, please refer to [this comprehensive guide](https://docs.mirotalk.com/mirotalk-web/self-hosting/). It will provide you with all the necessary instructions to get your MiroTalk WEB instance up and running smoothly. | ||
- `Self-hosting:` For `self-hosting MiroTalk WEB` on your own dedicated server, please refer to [this comprehensive guide](https://docs.mirotalk.com/mirotalk-web/self-hosting/). It will provide you with all the necessary instructions to get your MiroTalk WEB instance up and running smoothly. | ||
|
||
- `Rest API:` You can check the swagger document at http://localhost:9000/api/v1/docs, or live [here](https://webrtc.mirotalk.com/api/v1/docs). | ||
- `Rest API:` You can check the swagger document at http://localhost:9000/api/v1/docs, or live [here](https://webrtc.mirotalk.com/api/v1/docs). | ||
|
||
</details> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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.1.19 | ||
* @version 1.1.20 | ||
*/ | ||
|
||
const isMobile = !!/Android|webOS|iPhone|iPad|iPod|BB10|BlackBerry|IEMobile|Opera Mini|Mobile|mobile/i.test( | ||
|
@@ -563,7 +563,7 @@ function getRow(obj) { | |
? `<i id="${obj._id}_delete" onclick="delRow('${obj._id}')" class="uil uil-multiply"></i>` | ||
: ''; | ||
|
||
let rooms = `<td><input id="${obj._id}_room" type="text" name="room" value="${obj.room}"/></td>`; | ||
let rooms = `<td><input id="${obj._id}_room" type="text" placeholder="Room name" name="room" value="${obj.room}"/></td>`; | ||
|
||
if (!user.allowedRoomsALL) { | ||
rooms = `<select id="${obj._id}_room" class="select-options">`; | ||
|
@@ -585,11 +585,11 @@ function getRow(obj) { | |
${optionBRO} | ||
</select> | ||
</td>`, | ||
`<td><input id="${obj._id}_tag" type="text" name="tag" value="${obj.tag}"/></td>`, | ||
`<td><input id="${obj._id}_email" type="email" name="email" value="${obj.email}"/></td>`, | ||
`<td><input id="${obj._id}_phone" type="text" name="text" value="${obj.phone}"/></td>`, | ||
`<td><input id="${obj._id}_date" type="date" name="date" value="${obj.date}"/></td>`, | ||
`<td><input id="${obj._id}_time" type="time" name="time" value="${obj.time}"/></td>`, | ||
`<td><input id="${obj._id}_tag" type="text" name="tag" placeholder="Tag" value="${obj.tag}"/></td>`, | ||
`<td><input id="${obj._id}_email" type="email" name="email" placeholder="Email address" value="${obj.email}"/></td>`, | ||
`<td><input id="${obj._id}_phone" type="text" name="text" placeholder="Phone number" value="${obj.phone}"/></td>`, | ||
`<td><input id="${obj._id}_date" type="date" name="date" placeholder="Date" value="${obj.date}"/></td>`, | ||
`<td><input id="${obj._id}_time" type="time" name="time" placeholder="Time" value="${obj.time}"/></td>`, | ||
`<td>${rooms}</td>`, | ||
`<td> | ||
${setRandomRoomIcon} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters