1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-14 04:55:55 +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;
}
}