update videojs import to include http-streaming module

so we can support hls streams
This commit is contained in:
Sean Yesmunt 2020-12-28 13:19:27 -05:00
parent 5fa57e1859
commit a8cb4d7d57
4 changed files with 4 additions and 4 deletions

View file

@ -1,4 +1,4 @@
import videojs from 'video.js/dist/alt/video.core.novtt.min.js';
import videojs from 'video.js/dist/video.min.js';
import './touchOverlay.js';
import window from 'global/window';
import './plugin.scss';

View file

@ -3,7 +3,7 @@
* Touch UI component
*/
import videojs from 'video.js/dist/alt/video.core.novtt.min.js';
import videojs from 'video.js/dist/video.min.js';
import window from 'global/window';
const Component = videojs.getComponent('Component');

View file

@ -1,4 +1,4 @@
import videojs from 'video.js/dist/alt/video.core.novtt.min.js';
import videojs from 'video.js/dist/video.min.js';
import window from 'global/window';
const VERSION = '2.1.4';

View file

@ -3,7 +3,7 @@ import React, { useEffect, useRef, useState } from 'react';
import Button from 'component/button';
import * as ICONS from 'constants/icons';
import classnames from 'classnames';
import videojs from 'video.js/dist/alt/video.core.novtt.min.js';
import videojs from 'video.js/dist/video.min.js';
import 'video.js/dist/alt/video-js-cdn.min.css';
import eventTracking from 'videojs-event-tracking';
import * as OVERLAY from './overlays';