Use appendChild instead of append
`append` is only supported in Chrome > 54 Fixes #1127 // FREEBIE
This commit is contained in:
parent
c8d456b71f
commit
b68f438cee
1 changed files with 1 additions and 1 deletions
|
@ -20,7 +20,7 @@
|
||||||
bg.owsDesktopApp.getAppView(window).then(function(appView) {
|
bg.owsDesktopApp.getAppView(window).then(function(appView) {
|
||||||
var bodyEl = document.getElementById('signal-container');
|
var bodyEl = document.getElementById('signal-container');
|
||||||
bodyEl.innerHTML = "";
|
bodyEl.innerHTML = "";
|
||||||
bodyEl.append(appView.el);
|
bodyEl.appendChild(appView.el);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue