Browse Source

Comply w/ coding style

master
Lyubo Marinov 8 years ago
parent
commit
684572bd05
1 changed files with 10 additions and 9 deletions
  1. 10
    9
      react/features/base/media/actionTypes.js

+ 10
- 9
react/features/base/media/actionTypes.js View File

1
 import { Symbol } from '../react';
1
 import { Symbol } from '../react';
2
 
2
 
3
 /**
3
 /**
4
- * Action to set the muted state of the local audio.
4
+ * The type of (redux) action to set the muted state of the local audio.
5
  *
5
  *
6
  * {
6
  * {
7
- *      type: SET_AUDIO_MUTED,
8
- *      muted: boolean
7
+ *     type: SET_AUDIO_MUTED,
8
+ *     muted: boolean
9
  * }
9
  * }
10
  */
10
  */
11
 export const SET_AUDIO_MUTED = Symbol('SET_AUDIO_MUTED');
11
 export const SET_AUDIO_MUTED = Symbol('SET_AUDIO_MUTED');
12
 
12
 
13
 /**
13
 /**
14
- * Action to set the facing mode of the local video camera.
14
+ * The type of (redux) action to set the facing mode of the local video camera
15
+ * to a specific value.
15
  *
16
  *
16
  * {
17
  * {
17
- *      type: SET_CAMERA_FACING_MODE,
18
- *      cameraFacingMode: CAMERA_FACING_MODE
18
+ *     type: SET_CAMERA_FACING_MODE,
19
+ *     cameraFacingMode: CAMERA_FACING_MODE
19
  * }
20
  * }
20
  */
21
  */
21
 export const SET_CAMERA_FACING_MODE = Symbol('SET_CAMERA_FACING_MODE');
22
 export const SET_CAMERA_FACING_MODE = Symbol('SET_CAMERA_FACING_MODE');
22
 
23
 
23
 /**
24
 /**
24
- * Action to set the muted state of the local video.
25
+ * The type of (redux) action to set the muted state of the local video.
25
  *
26
  *
26
  * {
27
  * {
27
- *      type: SET_VIDEO_MUTED,
28
- *      muted: boolean
28
+ *     type: SET_VIDEO_MUTED,
29
+ *     muted: boolean
29
  * }
30
  * }
30
  */
31
  */
31
 export const SET_VIDEO_MUTED = Symbol('SET_VIDEO_MUTED');
32
 export const SET_VIDEO_MUTED = Symbol('SET_VIDEO_MUTED');

Loading…
Cancel
Save