Use appendChild instead of append

`append` is only supported in Chrome > 54

Fixes #1127

// FREEBIE
pull/749/head
lilia 8 years ago
parent c8d456b71f
commit b68f438cee

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

Loading…
Cancel
Save