mirror of
https://github.com/nextcloud/server.git
synced 2026-04-15 22:11:17 -04:00
Mount profile after DOMContentLoaded
Fix https://github.com/nextcloud/server/issues/32187 Signed-off-by: Louis Chemineau <louis@chmn.me>
This commit is contained in:
parent
5570661bbd
commit
93ee9cd592
3 changed files with 7 additions and 4 deletions
|
|
@ -43,4 +43,7 @@ Vue.mixin({
|
|||
})
|
||||
|
||||
const View = Vue.extend(Profile)
|
||||
new View().$mount('#vue-profile')
|
||||
|
||||
window.addEventListener('DOMContentLoaded', () => {
|
||||
new View().$mount('#vue-profile')
|
||||
})
|
||||
|
|
|
|||
4
dist/core-profile.js
vendored
4
dist/core-profile.js
vendored
File diff suppressed because one or more lines are too long
2
dist/core-profile.js.map
vendored
2
dist/core-profile.js.map
vendored
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue