2022-09-08 08:04:32 -07:00

24 lines
326 B
JavaScript

/**
* Background video helper-wrapper.
*
* @author Htmlstream
* @version 1.0
*
*/
;(function ($) {
'use strict';
$.HSCore.helpers.HSBgVideo = {
/**
* Rating.
*
* @return undefined
*/
init: function (el) {
var $selector = $(el);
$selector.hsBgVideo();
}
};
})(jQuery);