We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent affa4ad commit 965013dCopy full SHA for 965013d
app/code/Magento/PageCache/view/frontend/web/js/page-cache.js
@@ -65,7 +65,7 @@ define([
65
contents = function (elem) {
66
return $.map(elem, function (el) {
67
try {
68
- return $.nodeName(el, 'iframe') ?
+ return elem.nodeName.toLowerCase() === 'iframe' ?
69
el.contentDocument || (el.contentWindow ? el.contentWindow.document : []) :
70
$.merge([], el.childNodes);
71
} catch (e) {
0 commit comments