Use appendChild instead of append

`append` is only supported in Chrome > 54

Fixes #1127

// FREEBIE
This commit is contained in:
lilia 2017-04-15 23:44:29 -07:00
parent c8d456b71f
commit b68f438cee

View file

@ -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);
});
});
}