summaryrefslogtreecommitdiff
path: root/tt-rss.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2006-05-24 04:15:04 +0100
committerAndrew Dolgov <[email protected]>2006-05-24 04:15:04 +0100
commit64a2875dcc6cb847ffdd43196bf27b5019e12419 (patch)
treef7e2e0d732b577befad9b4e0a997737682555ef3 /tt-rss.js
parent39541e74b2a7979eabe0ca3ddd28cf1022286535 (diff)
quick unsubscribe prompt shows feed name
Diffstat (limited to 'tt-rss.js')
-rw-r--r--tt-rss.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/tt-rss.js b/tt-rss.js
index 0b00737af..9e6d70c73 100644
--- a/tt-rss.js
+++ b/tt-rss.js
@@ -436,8 +436,10 @@ function quickMenuGo(opid) {
alert("Please select some feed first.");
return;
}
+
+ var fn = getFeedName(actid);
- if (confirm("Unsubscribe from current feed?")) {
+ if (confirm("Unsubscribe from " + fn + "?")) {
qfdDelete(actid);
}