diff --git a/dashboard-ui/scripts/site.js b/dashboard-ui/scripts/site.js index 14923a11b0..1a4b8a49ac 100644 --- a/dashboard-ui/scripts/site.js +++ b/dashboard-ui/scripts/site.js @@ -292,7 +292,7 @@ var Dashboard = { options.id = options.id || "notification" + new Date().getTime() + parseInt(Math.random()); - var footer = $("#footer").css("height", "50px"); + var footer = $("#footer"); var parentElem = $('#footerNotifications', footer); @@ -317,8 +317,21 @@ var Dashboard = { var isPlaying = false; if (videoBackdrop.is(":visible")) { + + footer.css("height", "50px"); + videoBackdrop.css("bottom", "48px"); + isPlaying = true; + + } else { + + if (!footer.is(":visible")) { + + footer.show(); + + } + } elem.html(options.html).trigger("create");