🇮🇳India @gouthamraon

Account created on 15 October 2015, over 8 years ago
#

Recent comments

🇮🇳India gouthamraon

@wim-leers :I have verified the #5 patch with the media field and it's working fine.

🇮🇳India gouthamraon

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.

🇮🇳India gouthamraon

#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.

🇮🇳India gouthamraon

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);

Production build 0.69.0 2024