diff options
Diffstat (limited to 'client/src/assets/player/utils.ts')
-rw-r--r-- | client/src/assets/player/utils.ts | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/client/src/assets/player/utils.ts b/client/src/assets/player/utils.ts index 0966027ac..366689962 100644 --- a/client/src/assets/player/utils.ts +++ b/client/src/assets/player/utils.ts | |||
@@ -4,6 +4,10 @@ function toTitleCase (str: string) { | |||
4 | return str.charAt(0).toUpperCase() + str.slice(1) | 4 | return str.charAt(0).toUpperCase() + str.slice(1) |
5 | } | 5 | } |
6 | 6 | ||
7 | function isWebRTCDisabled () { | ||
8 | return !!((window as any).RTCPeerConnection || (window as any).mozRTCPeerConnection || (window as any).webkitRTCPeerConnection) === false | ||
9 | } | ||
10 | |||
7 | // https://github.com/danrevah/ngx-pipes/blob/master/src/pipes/math/bytes.ts | 11 | // https://github.com/danrevah/ngx-pipes/blob/master/src/pipes/math/bytes.ts |
8 | // Don't import all Angular stuff, just copy the code with shame | 12 | // Don't import all Angular stuff, just copy the code with shame |
9 | const dictionaryBytes: Array<{max: number, type: string}> = [ | 13 | const dictionaryBytes: Array<{max: number, type: string}> = [ |
@@ -141,6 +145,7 @@ export { | |||
141 | toTitleCase, | 145 | toTitleCase, |
142 | timeToInt, | 146 | timeToInt, |
143 | secondsToTime, | 147 | secondsToTime, |
148 | isWebRTCDisabled, | ||
144 | buildVideoLink, | 149 | buildVideoLink, |
145 | buildVideoEmbed, | 150 | buildVideoEmbed, |
146 | videoFileMaxByResolution, | 151 | videoFileMaxByResolution, |