Browse Source
Merge pull request #1362 from nextcloud/disable-call-button-while-joining-or-leaving-a-call
Merge pull request #1362 from nextcloud/disable-call-button-while-joining-or-leaving-a-call
Disable call button while joining or leaving a callpull/1367/head
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 68 additions and 6 deletions
-
22css/files.scss
-
17css/style.scss
-
4js/connection.js
-
19js/views/callbutton.js
-
6js/views/templates.js
-
6js/views/templates/callbutton.handlebars
@ -1,9 +1,9 @@ |
|||
{{#if isInCall}} |
|||
<button class="leave-call primary">{{leaveCallText}}</button> |
|||
<button class="leave-call primary">{{leaveCallText}}<span class="icon icon-loading-small hidden"></span></button> |
|||
{{else}} |
|||
{{#if hasCall}} |
|||
<button class="join-call call-ongoing primary">{{joinCallText}}</button> |
|||
<button class="join-call call-ongoing primary">{{joinCallText}}<span class="icon icon-loading-small hidden"></span></button> |
|||
{{else}} |
|||
<button class="join-call primary">{{startCallText}}</button> |
|||
<button class="join-call primary">{{startCallText}}<span class="icon icon-loading-small hidden"></span></button> |
|||
{{/if}} |
|||
{{/if}} |
|||
Write
Preview
Loading…
Cancel
Save
Reference in new issue