Skip to content

Commit edbdbf9

Browse files
chore: Run eslint auto-fix
1 parent 0dd9505 commit edbdbf9

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

src/components/player/player.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,12 @@ export class Player {
4242
/**
4343
* Used on key control to skip the video forwards and backwards
4444
*/
45-
skippedSeconds = 5;
45+
private skippedSeconds = 5;
4646

4747
/**
4848
* List of keyboard keys the player listens to on the 'keydown` event
4949
*/
50-
shortcutKeys = {
50+
private shortcutKeys = {
5151
Space: ' ',
5252
Enter: 'Enter',
5353
ArrowUp: 'ArrowUp',

src/components/providers/kaltura/kaltura.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ import {
2121
styleUrl: 'kaltura.scss',
2222
})
2323
export class Kaltura implements XmVideo, VideoAnalytics {
24-
player: any;
24+
private player: any;
2525

26-
playerContainer: HTMLXmAspectRatioBoxElement;
26+
private playerContainer: HTMLXmAspectRatioBoxElement;
2727

28-
callbacks: Function[] = [];
28+
private callbacks: Function[] = [];
2929

3030
@Element() el: HTMLXmKalturaElement;
3131

src/components/providers/vimeo/vimeo.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import { XmVideo, VideoAnalytics } from '../../../types/common';
2020
shadow: true,
2121
})
2222
export class Vimeo implements XmVideo, VideoAnalytics {
23-
callbacks: Function[] = [];
23+
private callbacks: Function[] = [];
2424

2525
@Element() el: HTMLXmVimeoElement;
2626

src/components/slide-preview-bar/slide-preview-bar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ interface Slide {
2121
shadow: true,
2222
})
2323
export class SlidePreviewBar {
24-
slides: Slide[] = [];
24+
private slides: Slide[] = [];
2525

2626
@Element() el: HTMLXmSlidePreviewBarElement;
2727

0 commit comments

Comments
 (0)