Skip to content

Commit 09e26d0

Browse files
committed
Misc case changes, comment updates
1 parent e1eb16c commit 09e26d0

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

src/vector/jitsi/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
<body>
88
<div id="jitsiContainer"><!-- the js will put the conference here --></div>
99
<div id="joinButtonContainer">
10-
<div class="join-conference-boat">
11-
<div class="join-conference-prompt">
10+
<div class="joinConferenceFloating">
11+
<div class="joinConferencePrompt">
1212
<!-- TODO: i18n -->
1313
<h2>Jitsi Video Conference</h2>
1414
<button type="button" id="joinButton">Join Conference</button>

src/vector/jitsi/index.scss

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
1414
limitations under the License.
1515
*/
1616

17-
// TODO: Match the user's theme instead of hardcoding a bunch of colors
17+
// TODO: Match the user's theme: https://github.com/vector-im/riot-web/issues/12794
1818

1919
@font-face {
2020
font-family: 'Nunito';
@@ -49,12 +49,12 @@ body, html {
4949
width: 100%;
5050
}
5151

52-
.join-conference-boat {
52+
.joinConferenceFloating {
5353
display: table-cell;
5454
vertical-align: middle;
5555
}
5656

57-
.join-conference-prompt {
57+
.joinConferencePrompt {
5858
margin-left: auto;
5959
margin-right: auto;
6060
width: 90%;

src/vector/jitsi/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ let widgetApi: WidgetApi;
7878
scriptTag.src = SdkConfig.get()['jitsi']['externalApiUrl'];
7979
document.body.appendChild(scriptTag);
8080

81-
// TODO: register widgetApi listeners for PTT controls
81+
// TODO: register widgetApi listeners for PTT controls (https://github.com/vector-im/riot-web/issues/12795)
8282

8383
document.getElementById("joinButton").onclick = () => joinConference();
8484
} catch (e) {

0 commit comments

Comments
 (0)