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
committerJoas Schilling <coding@schilljs.com>2020-08-03 14:35:54 +0300
commit2879d692258f3718c86a4891b19d5033ab163353 (patch)
treec9c68d48fb33036d1df933320a7fc71b2972621e /src/FilesSidebarCallViewApp.vue
parentdea5040713e0a574d5bf95152a10db656ac75757 (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)
}
},
},