From 696684653d0f69c9570f32cb910237f6b8b1bde7 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Sun, 11 Dec 2005 08:56:57 +0100 Subject: confirm dangerous actions in prefs, main quick-delete action change --- tt-rss.js | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) (limited to 'tt-rss.js') diff --git a/tt-rss.js b/tt-rss.js index c8e1c3e3f..b47e3bd54 100644 --- a/tt-rss.js +++ b/tt-rss.js @@ -438,8 +438,11 @@ function quickMenuGo() { notify("Please select some feed first."); return; } + + if (confirm("Remove current feed?")) { + qfdDelete(actid); + } - displayDlg("quickDelFeed", actid); return; } @@ -546,10 +549,10 @@ function qfdDelete(feed_id) { notify("Removing feed..."); - var feeds_doc = window.frames["feeds-frame"].document; - feeds_doc.location.href = "backend.php?op=error&msg=Loading,%20please wait..."; +// var feeds_doc = window.frames["feeds-frame"].document; +// feeds_doc.location.href = "backend.php?op=error&msg=Loading,%20please wait..."; - xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=remove&ids=" + feed_id); + xmlhttp.open("GET", "backend.php?op=pref-feeds&quiet=1&subop=remove&ids=" + feed_id); xmlhttp.onreadystatechange=dlg_frefresh_callback; xmlhttp.send(null); } -- cgit v1.2.3