mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2025-12-24 04:09:49 +00:00
Use appendChild instead of append
`append` is only supported in Chrome > 54 Fixes #1127 // FREEBIE
This commit is contained in:
@@ -20,7 +20,7 @@
|
||||
bg.owsDesktopApp.getAppView(window).then(function(appView) {
|
||||
var bodyEl = document.getElementById('signal-container');
|
||||
bodyEl.innerHTML = "";
|
||||
bodyEl.append(appView.el);
|
||||
bodyEl.appendChild(appView.el);
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user