13 lines
225 B
JavaScript
Raw Normal View History

2021-03-15 11:45:34 +01:00
(function ($) {
'use strict';
Drupal.behaviors.lazy = {
attach: function (context, settings) {
var options = settings.lazy ? settings.lazy : {};
Drupal.lazy = new Blazy(options);
}
};
})(jQuery);