1c5dcf30 by David LaPalomento

Use the `||` operator to default videojs namespace

Instead of using a conditional, use logical or when determining if videojs.hls should be stubbed out or not.
1 parent d290484f
(function(window) {
if (!window.videojs) {
window.videojs = {};
}
if (!window.videojs.hls) {
window.videojs.hls = {};
}
window.videojs = window.videojs || {};
window.videojs.hls = window.videojs.hls || {};
var
hls = window.videojs.hls,
......