viewfeed: do not show notify progress when offset != 0
This commit is contained in:
parent
173d57e527
commit
3205fab020
11
feedlist.js
11
feedlist.js
|
@ -138,12 +138,13 @@ function viewfeed(feed, subop, is_cat, offset) {
|
||||||
|
|
||||||
console.log(query);
|
console.log(query);
|
||||||
|
|
||||||
if (!is_cat) {
|
if (!offset)
|
||||||
if (!setFeedExpandoIcon(feed, is_cat, 'images/indicator_white.gif'))
|
if (!is_cat) {
|
||||||
|
if (!setFeedExpandoIcon(feed, is_cat, 'images/indicator_white.gif'))
|
||||||
|
notify_progress("Loading, please wait...", true);
|
||||||
|
} else {
|
||||||
notify_progress("Loading, please wait...", true);
|
notify_progress("Loading, please wait...", true);
|
||||||
} else {
|
}
|
||||||
notify_progress("Loading, please wait...", true);
|
|
||||||
}
|
|
||||||
|
|
||||||
new Ajax.Request("backend.php", {
|
new Ajax.Request("backend.php", {
|
||||||
parameters: query,
|
parameters: query,
|
||||||
|
|
Loading…
Reference in New Issue