Put article ifram in front of modules

Before this change the article was brought up in its ifram in fullscreen and you could still see the other modules in front of it
This commit is contained in:
Andreas Cederström
2018-01-20 23:32:44 +01:00
parent d167ad1923
commit f299ba6218
2 changed files with 4 additions and 0 deletions

View File

@@ -186,6 +186,7 @@ Module.register("newsfeed",{
fullArticle.height = window.innerHeight;
fullArticle.style.border = "none";
fullArticle.src = this.newsItems[this.activeItem].url;
fullArticle.style.zIndex = 1;
wrapper.appendChild(fullArticle);
}