#14 worked for me. Thanks for the patch @ambot112.
gouthamraon → created an issue.
We are also facing the same issue after upgrading to 2.0.0
Any suggestions?
@wim-leers :I have verified the #5 patch with the media field and it's working fine.
Created a patch for the issue mentioned, please review.
We are also facing the same issue.
After upgrading site to 10.2.2, we are seeing this issue.
@wim-leers : I tried this in Chrome and Firefox, both i'm seeing this issue.
Reroll of #25 for Drupal 10.1.6
gouthamraon → created an issue.
gouthamraon → created an issue. See original summary → .
#168 patch is not applying with the Drupal 10.1.5 version.
Issue with kernal test changes. Updated the changes and adding the new patch.
gouthamraon → created an issue.
gouthamraon → created an issue.
Getting Console error after applying #67 patch, Null value in "iframe.contentWindow".
We need to add a condition for this.
// Resize iFrame based on content (called from iframe onload).
function resizeIframe(iframe) {
// Remove default height so we're not calculating from that.
iframe.style.height = '';
// Set height to content.
iframe.style.height = iframe.contentWindow.document.documentElement.scrollHeight + 'px';
// Periodically auto-resize as contents may change.
setInterval( function () {
if(iframe.contentWindow == null) return;
iframe.style.height = iframe.contentWindow.document.documentElement.scrollHeight + 'px';
}, 1000);