Further changes for the Use cases on the live site.
[yaffs-website] / web / core / modules / responsive_image / js / responsive_image.ajax.js
1 (function (Drupal) {
2
3   'use strict';
4
5   /**
6    * Call picturefill so newly added responsive images are processed.
7    */
8   Drupal.behaviors.responsiveImageAJAX = {
9     attach: function () {
10       if (window.picturefill) {
11         window.picturefill();
12       }
13     }
14   };
15
16 })(Drupal);