@skylineos/videojs-clsp
Version:
Video JS plugin for Skyline Technology Solutions' CLSP Player - https://github.com/skylineos/clsp-player
18 lines (12 loc) • 418 B
JavaScript
import '../styles/videojs-clsp.css';
import plugin from './plugin';
import utils from './utils';
if (!window.clspUtils) {
window.clspUtils = utils;
}
const clspPlugin = plugin();
// @todo - do not initialize the plugin by default, since that is a side
// effect. make the caller call the initialize function. also, is it
// possible to unregister the plugin?
clspPlugin.register();
export default clspPlugin;