From: Andrew Dolgov Date: Mon, 20 Mar 2006 14:45:55 +0000 (+0100) Subject: hide load progress X-Git-Tag: 1.1.5~61 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=2055d4a6dcbfd7d0e791c37bd88db7100052fa3a;p=tt-rss.git hide load progress --- diff --git a/feedlist.js b/feedlist.js index 8f9898ac..1be1020c 100644 --- a/feedlist.js +++ b/feedlist.js @@ -227,6 +227,13 @@ function init() { hideOrShowFeeds(document, getCookie("ttrss_vf_hreadf") == 1); document.onkeydown = hotkey_handler; parent.setTimeout("timeout()", 0); + + var o = parent.document.getElementById("overlay"); + + if (o) { + o.style.display = "none"; + } + } catch (e) { exception_error("feedlist/init", e); } diff --git a/tt-rss.css b/tt-rss.css index ed320a0c..aefc66be 100644 --- a/tt-rss.css +++ b/tt-rss.css @@ -1015,3 +1015,19 @@ div.cdmContent a:hover { padding : 0px; font-size : x-small; } + +#overlay { + background : white; + left : 0; + top : 0; + height : 100%; + width : 100%; + z-index : 100; + position : absolute; +} + +#overlay_inner { + font-weight : bold; + text-align : center; + margin : 10px; +} diff --git a/tt-rss.php b/tt-rss.php index e22d8408..68ab5268 100644 --- a/tt-rss.php +++ b/tt-rss.php @@ -59,6 +59,8 @@ +
Loading, please wait...
+