Browse Source

Fixes typo, comment

master
Lyubo Marinov 7 years ago
parent
commit
b9c5ed3b03

+ 1
- 1
react/features/base/media/components/native/VideoTrack.js View File

19
     static propTypes = AbstractVideoTrack.propTypes
19
     static propTypes = AbstractVideoTrack.propTypes
20
 
20
 
21
     /**
21
     /**
22
-     * Renders video element with animation.
22
+     * Renders the video element for the associated video track.
23
      *
23
      *
24
      * @override
24
      * @override
25
      * @returns {ReactElement}
25
      * @returns {ReactElement}

+ 1
- 1
react/features/base/media/components/native/VideoTransform.js View File

229
                 onLayout = { this._onLayout }
229
                 onLayout = { this._onLayout }
230
                 pointerEvents = 'box-only'
230
                 pointerEvents = 'box-only'
231
                 style = { [
231
                 style = { [
232
-                    styles.videoTransformedViewContaier,
232
+                    styles.videoTransformedViewContainer,
233
                     style
233
                     style
234
                 ] }
234
                 ] }
235
                 { ...this.gestureHandlers.panHandlers }>
235
                 { ...this.gestureHandlers.panHandlers }>

+ 1
- 1
react/features/base/media/components/native/styles.js View File

17
      * that can be visible on special occasions, such as during device rotate
17
      * that can be visible on special occasions, such as during device rotate
18
      * animation, or PiP mode.
18
      * animation, or PiP mode.
19
      */
19
      */
20
-    videoTransformedViewContaier: {
20
+    videoTransformedViewContainer: {
21
         overflow: 'hidden'
21
         overflow: 'hidden'
22
     },
22
     },
23
 
23
 

Loading…
Cancel
Save