Updates submodules

This commit is contained in:
Mo Bitar
2018-02-07 11:22:27 -06:00
parent c15bdda6c9
commit 2d4be5f399
4 changed files with 19 additions and 20 deletions

View File

@@ -772,7 +772,7 @@ class ComponentManager {
}
iframeForComponent(component) {
for(var frame of document.getElementsByTagName("iframe")) {
for(var frame of Array.from(document.getElementsByTagName("iframe"))) {
var componentId = frame.dataset.componentId;
if(componentId === component.uuid) {
return frame;