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 7f152e3 commit 8316132Copy full SHA for 8316132
src/library/index.js
@@ -64,7 +64,7 @@ function genFragment(
64
node instanceof HTMLIFrameElement
65
) {
66
const entityConfig = {};
67
- entityConfig.src = node.src;
+ entityConfig.src = node.getAttribute ? node.getAttribute('src') || node.src : node.src;
68
entityConfig.height = node.height;
69
entityConfig.width = node.width;
70
const entityId = Entity.__create(
0 commit comments