Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2020-07-31 14:07:10 +0300
committerbackportbot[bot] <backportbot[bot]@users.noreply.github.com>2020-08-03 15:08:26 +0300
commitb3628aba2ef70deb7766d933065553811dbe9e8c (patch)
tree926240bb4c5167ed931d947dfcc17ae135642082 /src/FilesSidebarCallViewApp.vue
parentcb6da87d7167c7c314f08bb28d85dc6328949634 (diff)
Fix Internet Explorer 11 not loading because Element.append() does not exist
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'src/FilesSidebarCallViewApp.vue')
-rw-r--r--src/FilesSidebarCallViewApp.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/FilesSidebarCallViewApp.vue b/src/FilesSidebarCallViewApp.vue
index ce874bf61..91b4ea3d6 100644
--- a/src/FilesSidebarCallViewApp.vue
+++ b/src/FilesSidebarCallViewApp.vue
@@ -254,7 +254,7 @@ export default {
}
}
- header.append(this.$el)
+ header.appendChild(this.$el)
},
/**
@@ -279,7 +279,7 @@ export default {
const headerAction = document.querySelector('.app-sidebar-header__action')
if (headerAction) {
- headerAction.append(this.$el)
+ headerAction.appendChild(this.$el)
}
},
},