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