-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6437ad0
commit 2122f6d
Showing
2 changed files
with
16 additions
and
16 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ | |
<link rel="manifest" href="/manifest.json" /> | ||
<link | ||
rel="apple-touch-icon" | ||
href="/images/icons-connectycube-touchicon-180.png" /> | ||
href="./images/icons-connectycube-touchicon-180.png" /> | ||
<link | ||
rel="stylesheet" | ||
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.12.0-2/css/all.min.css" /> | ||
|
@@ -38,7 +38,7 @@ | |
sizes="16x16" | ||
href="https://connectycube.com/wp-content/themes/connectycube2019/favicon/favicon-16x16.png" /> | ||
<!-- app styles --> | ||
<link rel="stylesheet" href="/styles/index.css" /> | ||
<link rel="stylesheet" href="./styles/index.css" /> | ||
</head> | ||
|
||
<body> | ||
|
@@ -48,7 +48,7 @@ | |
<div id="login-logo"> | ||
<img | ||
id="login-image" | ||
src="/images/icons-connectycube-512.png" | ||
src="./images/icons-connectycube-512.png" | ||
alt="ConnectyCube" /> | ||
<div id="login-caption">Conference calling</div> | ||
<div id="login-loader" class="hidden"> | ||
|
@@ -237,15 +237,15 @@ | |
</script> | ||
<!-- SOUNDS --> | ||
<audio id="signal-end" preload="auto"> | ||
<source src="/audio/end_call.mp3" type="audio/mp3" /> | ||
<source src="./audio/end_call.mp3" type="audio/mp3" /> | ||
</audio> | ||
|
||
<audio id="signal-out" loop preload="auto"> | ||
<source src="/audio/dialing.mp3" type="audio/mp3" /> | ||
<source src="./audio/dialing.mp3" type="audio/mp3" /> | ||
</audio> | ||
|
||
<audio id="signal-in" loop preload="auto"> | ||
<source src="/audio/calling.mp3" type="audio/mp3" /> | ||
<source src="./audio/calling.mp3" type="audio/mp3" /> | ||
</audio> | ||
</div> | ||
<div id="e2e-ice-state" hidden></div> | ||
|
@@ -257,6 +257,6 @@ | |
<script | ||
type="text/javascript" | ||
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/connectycube.min.js"></script> | ||
<script type="text/javascript" src="/main.js"></script> | ||
<script type="text/javascript" src="/events-service.js"></script> | ||
<script type="text/javascript" src="./main.js"></script> | ||
<script type="text/javascript" src="./events-service.js"></script> | ||
</html> |
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 |
---|---|---|
|
@@ -11,7 +11,7 @@ | |
<link rel="manifest" href="/manifest.json" /> | ||
<link | ||
rel="apple-touch-icon" | ||
href="/images/icons-connectycube-touchicon-180.png" /> | ||
href="./images/icons-connectycube-touchicon-180.png" /> | ||
<link | ||
rel="stylesheet" | ||
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.12.0-2/css/all.min.css" /> | ||
|
@@ -38,7 +38,7 @@ | |
sizes="16x16" | ||
href="https://connectycube.com/wp-content/themes/connectycube2019/favicon/favicon-16x16.png" /> | ||
<!-- app styles --> | ||
<link rel="stylesheet" href="/styles/index.css" /> | ||
<link rel="stylesheet" href="./styles/index.css" /> | ||
</head> | ||
|
||
<body> | ||
|
@@ -48,7 +48,7 @@ | |
<div id="login-logo"> | ||
<img | ||
id="login-image" | ||
src="/images/icons-connectycube-512.png" | ||
src="./images/icons-connectycube-512.png" | ||
alt="ConnectyCube" /> | ||
<div id="login-caption">Conference calling</div> | ||
<div id="login-loader" class="hidden"> | ||
|
@@ -237,15 +237,15 @@ | |
</script> | ||
<!-- SOUNDS --> | ||
<audio id="signal-end" preload="auto"> | ||
<source src="/audio/end_call.mp3" type="audio/mp3" /> | ||
<source src="./audio/end_call.mp3" type="audio/mp3" /> | ||
</audio> | ||
|
||
<audio id="signal-out" loop preload="auto"> | ||
<source src="/audio/dialing.mp3" type="audio/mp3" /> | ||
<source src="./audio/dialing.mp3" type="audio/mp3" /> | ||
</audio> | ||
|
||
<audio id="signal-in" loop preload="auto"> | ||
<source src="/audio/calling.mp3" type="audio/mp3" /> | ||
<source src="./audio/calling.mp3" type="audio/mp3" /> | ||
</audio> | ||
</div> | ||
<div id="e2e-ice-state" hidden></div> | ||
|
@@ -257,6 +257,6 @@ | |
<script | ||
type="text/javascript" | ||
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/connectycube.min.js"></script> | ||
<script type="text/javascript" src="/main.js"></script> | ||
<script type="text/javascript" src="/events-service.js"></script> | ||
<script type="text/javascript" src="./main.js"></script> | ||
<script type="text/javascript" src="./events-service.js"></script> | ||
</html> |