aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/shared.module.ts
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2018-07-17 14:44:19 +0200
committerChocobozzz <me@florianbigard.com>2018-07-17 14:56:15 +0200
commit0f7fedc39857ebc0eb29182c1588a92b9adfb75a (patch)
treef1516e93a93d1042bbc4d14d10575b88cae6bba1 /client/src/app/shared/shared.module.ts
parent4bdd9473fdecfa7e309e3c59b05b29d0a20ac397 (diff)
downloadPeerTube-0f7fedc39857ebc0eb29182c1588a92b9adfb75a.tar.gz
PeerTube-0f7fedc39857ebc0eb29182c1588a92b9adfb75a.tar.zst
PeerTube-0f7fedc39857ebc0eb29182c1588a92b9adfb75a.zip
Improve frontend accessibility
In particular checkboxes, likes/dislikes, share button, video thumbnails and help buttons
Diffstat (limited to 'client/src/app/shared/shared.module.ts')
-rw-r--r--client/src/app/shared/shared.module.ts5
1 files changed, 4 insertions, 1 deletions
diff --git a/client/src/app/shared/shared.module.ts b/client/src/app/shared/shared.module.ts
index c3f4bf88b..fdfb90600 100644
--- a/client/src/app/shared/shared.module.ts
+++ b/client/src/app/shared/shared.module.ts
@@ -45,6 +45,7 @@ import { I18nPrimengCalendarService } from '@app/shared/i18n/i18n-primeng-calend
45import { ScreenService } from '@app/shared/misc/screen.service' 45import { ScreenService } from '@app/shared/misc/screen.service'
46import { VideoCaptionsValidatorsService } from '@app/shared/forms/form-validators/video-captions-validators.service' 46import { VideoCaptionsValidatorsService } from '@app/shared/forms/form-validators/video-captions-validators.service'
47import { VideoCaptionService } from '@app/shared/video-caption' 47import { VideoCaptionService } from '@app/shared/video-caption'
48import { PeertubeCheckboxComponent } from '@app/shared/forms/peertube-checkbox.component'
48 49
49@NgModule({ 50@NgModule({
50 imports: [ 51 imports: [
@@ -77,7 +78,8 @@ import { VideoCaptionService } from '@app/shared/video-caption'
77 MarkdownTextareaComponent, 78 MarkdownTextareaComponent,
78 InfiniteScrollerDirective, 79 InfiniteScrollerDirective,
79 HelpComponent, 80 HelpComponent,
80 ReactiveFileComponent 81 ReactiveFileComponent,
82 PeertubeCheckboxComponent
81 ], 83 ],
82 84
83 exports: [ 85 exports: [
@@ -106,6 +108,7 @@ import { VideoCaptionService } from '@app/shared/video-caption'
106 InfiniteScrollerDirective, 108 InfiniteScrollerDirective,
107 HelpComponent, 109 HelpComponent,
108 ReactiveFileComponent, 110 ReactiveFileComponent,
111 PeertubeCheckboxComponent,
109 112
110 NumberFormatterPipe, 113 NumberFormatterPipe,
111 ObjectLengthPipe, 114 ObjectLengthPipe,