feed browser: add local spinner

master
Andrew Dolgov 15 years ago
parent d99b086eb0
commit f4280bdd13

@ -2052,12 +2052,16 @@ function updateFeedBrowser() {
query = query + "&search=" + param_escape(search.value); query = query + "&search=" + param_escape(search.value);
} }
notify_progress("Loading, please wait...", true); //notify_progress("Loading, please wait...", true);
Element.show('feed_browser_spinner');
new Ajax.Request(query, { new Ajax.Request(query, {
onComplete: function(transport) { onComplete: function(transport) {
notify(''); notify('');
Element.hide('feed_browser_spinner');
var c = $("browseFeedList"); var c = $("browseFeedList");
var r = transport.responseXML.getElementsByTagName("content")[0]; var r = transport.responseXML.getElementsByTagName("content")[0];
var nr = transport.responseXML.getElementsByTagName("num-results")[0]; var nr = transport.responseXML.getElementsByTagName("num-results")[0];

@ -70,6 +70,8 @@
print " print "
<div style='float : right'> <div style='float : right'>
<img style='display : none'
id='feed_browser_spinner' src='images/indicator_white.gif'>
<input id=\"feed_browser_search\" size=\"20\" type=\"search\" <input id=\"feed_browser_search\" size=\"20\" type=\"search\"
onfocus=\"javascript:disableHotkeys();\" onfocus=\"javascript:disableHotkeys();\"
onblur=\"javascript:enableHotkeys();\" onblur=\"javascript:enableHotkeys();\"

@ -1222,7 +1222,7 @@ function gotoOnline() {
// if (confirm(__("You won't be able to access offline version of Tiny Tiny RSS until you switch it into offline mode again. Go online?"))) { // if (confirm(__("You won't be able to access offline version of Tiny Tiny RSS until you switch it into offline mode again. Go online?"))) {
if (confirm(__("Tiny Tiny RSS will reload. Go online?"))) { if (confirm(__("Tiny Tiny RSS will reload. Go online?"))) {
//localServer.removeManagedStore("tt-rss"); //localServer.removeManagedStore("tt-rss");
window.location.href = "tt-rss.php?online"; window.location.href = "tt-rss.php?online=1";
} }
} }

@ -216,6 +216,7 @@ ul.feedList img, img.tinyFeedIcon {
margin : 0px 3px 0px 0px; margin : 0px 3px 0px 0px;
width : 16px; width : 16px;
height : 16px; height : 16px;
vertical-align : middle;
border-width : 0px; border-width : 0px;
} }
@ -2231,3 +2232,9 @@ div#cmdline {
padding : 3px 5px 3px 5px; padding : 3px 5px 3px 5px;
z-index : 5; z-index : 5;
} }
#feed_browser_spinner {
vertical-align : middle;
height : 18px;
width : 18px;
}

Loading…
Cancel
Save