diff options
Diffstat (limited to 'client/src/app/videos/+video-watch')
-rw-r--r-- | client/src/app/videos/+video-watch/comment/video-comment-add.component.html | 7 | ||||
-rw-r--r-- | client/src/app/videos/+video-watch/modal/video-support.component.html | 5 |
2 files changed, 8 insertions, 4 deletions
diff --git a/client/src/app/videos/+video-watch/comment/video-comment-add.component.html b/client/src/app/videos/+video-watch/comment/video-comment-add.component.html index 3e820041d..9b43d91da 100644 --- a/client/src/app/videos/+video-watch/comment/video-comment-add.component.html +++ b/client/src/app/videos/+video-watch/comment/video-comment-add.component.html | |||
@@ -43,9 +43,10 @@ | |||
43 | <my-remote-subscribe [interact]="true" [uri]="getUri()"></my-remote-subscribe> | 43 | <my-remote-subscribe [interact]="true" [uri]="getUri()"></my-remote-subscribe> |
44 | </div> | 44 | </div> |
45 | <div class="modal-footer inputs"> | 45 | <div class="modal-footer inputs"> |
46 | <span i18n class="action-button action-button-cancel" role="button" (click)="hideVisitorModal()"> | 46 | <input |
47 | Cancel | 47 | type="button" role="button" i18n-value value="Cancel" class="action-button action-button-cancel" |
48 | </span> | 48 | (click)="hideVisitorModal()" (key.enter)="hideVisitorModal()" |
49 | > | ||
49 | 50 | ||
50 | <input | 51 | <input |
51 | type="submit" i18n-value value="Login to comment" class="action-button-submit" | 52 | type="submit" i18n-value value="Login to comment" class="action-button-submit" |
diff --git a/client/src/app/videos/+video-watch/modal/video-support.component.html b/client/src/app/videos/+video-watch/modal/video-support.component.html index 608a4632b..935656d23 100644 --- a/client/src/app/videos/+video-watch/modal/video-support.component.html +++ b/client/src/app/videos/+video-watch/modal/video-support.component.html | |||
@@ -7,6 +7,9 @@ | |||
7 | <div class="modal-body" [innerHTML]="videoHTMLSupport"></div> | 7 | <div class="modal-body" [innerHTML]="videoHTMLSupport"></div> |
8 | 8 | ||
9 | <div class="modal-footer inputs"> | 9 | <div class="modal-footer inputs"> |
10 | <span i18n class="action-button action-button-cancel" (click)="hide()">Maybe later</span> | 10 | <input |
11 | type="button" role="button" i18n-value value="Maybe later" class="action-button action-button-cancel" | ||
12 | (click)="hide()" (key.enter)="hide()" | ||
13 | > | ||
11 | </div> | 14 | </div> |
12 | </ng-template> | 15 | </ng-template> |