fix issue with hiding loading message in embedded mode

This commit is contained in:
Stacey Gammon 2016-11-28 14:06:49 -05:00
parent 469a211483
commit a5d4aaa621

View file

@ -125,7 +125,7 @@ block content
var hideLoadingMessage = /#.*[?&]embed(&|$)/.test(window.location.href);
if (hideLoadingMessage) {
var loading = document.querySelector('.ui-app-loading h1');
var loading = document.querySelector('.kibanaWelcomeView');
loading.removeChild(loading.lastChild);
}