quick unsubscribe prompt shows feed name
This commit is contained in:
parent
39541e74b2
commit
64a2875dcc
10
functions.js
10
functions.js
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue