From 33b8cab44f908c5f632ea7270e23d1d901eb744b Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Thu, 28 Sep 2006 13:42:47 +0100 Subject: [PATCH] fix notify box, add notify prompt in viewfeed --- feedlist.js | 8 +++++++- tt-rss.css | 11 +++++++++-- tt-rss.php | 2 ++ viewfeed.js | 1 + 4 files changed, 19 insertions(+), 3 deletions(-) diff --git a/feedlist.js b/feedlist.js index 1a83a454..6b8c189f 100644 --- a/feedlist.js +++ b/feedlist.js @@ -94,6 +94,13 @@ function viewfeed(feed, subop, is_cat, subop_param) { debug(query); +/* var container = document.getElementById("headlines-frame"); + + container.innerHTML = "
 " + + "Loading, please wait...
"; */ + + notify("Loading, please wait...", true); + if (xmlhttp_ready(xmlhttp)) { xmlhttp.open("GET", query, true); xmlhttp.onreadystatechange=headlines_callback; @@ -102,7 +109,6 @@ function viewfeed(feed, subop, is_cat, subop_param) { debug("xmlhttp busy (@feeds)"); } - } catch (e) { exception_error("viewfeed", e); } diff --git a/tt-rss.css b/tt-rss.css index 6d4aaf49..6d225723 100644 --- a/tt-rss.css +++ b/tt-rss.css @@ -336,13 +336,14 @@ td.notifyBox { right : 35%; min-width : 30%; position : absolute; - -moz-border-radius : 3px; font-size : x-small; font-weight : bold; text-align : center; + display : none; float : right; padding : 3px 20px 3px 20px; - display : none; + z-index : 999; + -moz-border-radius : 3px; } #dispSwitch { @@ -1224,6 +1225,12 @@ table.loginForm2 .innerLoginCell { display : none; } +div.loadingPrompt { + padding : 1em; + text-align : center; + font-weight : bold; +} + /* layout */ #header { diff --git a/tt-rss.php b/tt-rss.php index b985867b..8a893b77 100644 --- a/tt-rss.php +++ b/tt-rss.php @@ -77,6 +77,8 @@
Loading, please wait...
+
 
+

Fatal Error

Unknown Error
diff --git a/viewfeed.js b/viewfeed.js index 66dc8778..9cc3aa39 100644 --- a/viewfeed.js +++ b/viewfeed.js @@ -8,6 +8,7 @@ function headlines_callback() { var f = document.getElementById("headlines-frame"); f.innerHTML = xmlhttp.responseText; update_all_counters(); + notify(""); } } -- 2.39.2