64f630d6f68ff69a21b96ca964b42c8e7317bc11
[yaffs-website] / web / core / modules / responsive_image / js / responsive_image.ajax.es6.js
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));