varbase_media_header-9.0.0-alpha1/js/media-header.object-fit-polyfill.js
js/media-header.object-fit-polyfill.js
/**
* @file
* Behaviors Varbase Media Header Object-Fit Polyfill fix scripts.
*/
(function varbaseMediaHeaderObjectFitPolyfill($, _, Drupal, objectFitPolyfill) {
// Configure Object-Fit Polyfill behaviors for Varbase Media Header.
Drupal.behaviors.VarbaseMediaHeaderObjectFitPolyfill = {
attach(context) {
objectFitPolyfill($('.vmh-background img.bg', context));
objectFitPolyfill($('.vmh-background picture.bg', context));
objectFitPolyfill($('.vmh-background video.bg', context));
},
};
})(window.jQuery, window._, window.Drupal, window.objectFitPolyfill);
