degov-8.x-2.0/modules/degov_paragraph_iframe/js/iframe.js
modules/degov_paragraph_iframe/js/iframe.js
/**
* @file iframe.js
*
* Defines the behavior of the Iframe paragraph.
*/
(function ($, Drupal) {
'use strict';
/**
* Resize the Iframe height.
*/
Drupal.behaviors.degov_paragraph_iframe = {
attach: function () {
$('.iframe--autoheight iframe').once('iframe-autoheight-processed').each(function () {
$(this).iFrameResize();
});
}
}
})(jQuery, Drupal);
