|
|
@ -408,6 +408,14 @@ function editFeed(feed) {
|
|
|
|
|
|
|
|
|
|
|
|
notify_progress("Loading, please wait...");
|
|
|
|
notify_progress("Loading, please wait...");
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
document.getElementById("subscribe_to_feed_btn").disabled = true;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
|
|
|
document.getElementById("top25_feeds_btn").disabled = true;
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
|
|
|
|
// this button is not always available, no-op if not found
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// clean selection from all rows & select row being edited
|
|
|
|
// clean selection from all rows & select row being edited
|
|
|
|
selectTableRowsByIdPrefix('prefFeedList', 'FEEDR-', 'FRCHK-', false);
|
|
|
|
selectTableRowsByIdPrefix('prefFeedList', 'FEEDR-', 'FRCHK-', false);
|
|
|
|
selectTableRowById('FEEDR-'+feed, 'FRCHK-'+feed, true);
|
|
|
|
selectTableRowById('FEEDR-'+feed, 'FRCHK-'+feed, true);
|
|
|
@ -637,6 +645,14 @@ function feedEditCancel() {
|
|
|
|
return
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
document.getElementById("subscribe_to_feed_btn").disabled = false;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
|
|
|
document.getElementById("top25_feeds_btn").disabled = false;
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
|
|
|
|
// this button is not always available, no-op if not found
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
closeInfoBox();
|
|
|
|
closeInfoBox();
|
|
|
|
|
|
|
|
|
|
|
|
selectPrefRows('feed', false); // cleanup feed selection
|
|
|
|
selectPrefRows('feed', false); // cleanup feed selection
|
|
|
@ -1633,6 +1649,14 @@ function editFeedCats() {
|
|
|
|
return
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
document.getElementById("subscribe_to_feed_btn").disabled = true;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
|
|
|
document.getElementById("top25_feeds_btn").disabled = true;
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
|
|
|
|
// this button is not always available, no-op if not found
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=editCats", true);
|
|
|
|
xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=editCats", true);
|
|
|
|
xmlhttp.onreadystatechange=infobox_callback;
|
|
|
|
xmlhttp.onreadystatechange=infobox_callback;
|
|
|
|
xmlhttp.send(null);
|
|
|
|
xmlhttp.send(null);
|
|
|
|