responsive_image.ajax.es6.js 254 B

123456789101112
  1. (function(Drupal) {
  2. /**
  3. * Call picturefill so newly added responsive images are processed.
  4. */
  5. Drupal.behaviors.responsiveImageAJAX = {
  6. attach() {
  7. if (window.picturefill) {
  8. window.picturefill();
  9. }
  10. },
  11. };
  12. })(Drupal);