You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
when dowloading the bc player script it has this code in it
// Use Node, AMD or browser globals to define a module.// See umd/returnExports(function(root,factory){if(typeofdefine==='function'&&define.amd){// AMD. Register as 'bc'define('bc',[],function(){varresult=factory.apply(this,arguments);root.videojs.log.warn('DEPRECATION: Using the default named RequireJS module in the Brightcove Player is deprecated. See: https://support.brightcove.com/requirejs-and-brightcove-player#Future_implementation');returnresult;});}elseif(typeofexports==='object'){// Node. Does not work with strict CommonJS, but// only CommonJS-like environments that support module.exports,// like Node.module.exports=factory();}else{// Browser globals (root is window)root.bc=factory(root);
the loader expect the bc player to be on the window object. can you provided an option for the loader to use require js or some loader to get the bc if the consuming app is using require js
The text was updated successfully, but these errors were encountered:
when dowloading the bc player script it has this code in it
and the loader has this
the loader expect the bc player to be on the window object. can you provided an option for the loader to use require js or some loader to get the bc if the consuming app is using require js
The text was updated successfully, but these errors were encountered: