1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-15 11:25:56 +00:00

quick unsubscribe prompt shows feed name

This commit is contained in:
Andrew Dolgov
2006-05-24 04:15:04 +01:00
parent 39541e74b2
commit 64a2875dcc
2 changed files with 12 additions and 2 deletions

View File

@@ -1181,4 +1181,12 @@ function fatalError(code, message) {
} }
} }
function getFeedName(id) {
var d = getFeedsContext().document;
var e = d.getElementById("FEEDN-" + id);
if (e) {
return e.innerHTML.stripTags();
} else {
return null;
}
}

View File

@@ -437,7 +437,9 @@ function quickMenuGo(opid) {
return; return;
} }
if (confirm("Unsubscribe from current feed?")) { var fn = getFeedName(actid);
if (confirm("Unsubscribe from " + fn + "?")) {
qfdDelete(actid); qfdDelete(actid);
} }