summaryrefslogtreecommitdiff
path: root/viewfeed.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2009-01-21 18:12:07 +0100
committerAndrew Dolgov <[email protected]>2009-01-21 18:12:07 +0100
commit37843d704231e6b43a712af4a12127ae90851310 (patch)
tree9397b9fe5f3d35388446abc3d0950fb29805dc68 /viewfeed.js
parent49f4a7e9f08208a2058078842243cae1945e354f (diff)
remove confirmation prompt from assign/remove label actions
Diffstat (limited to 'viewfeed.js')
-rw-r--r--viewfeed.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/viewfeed.js b/viewfeed.js
index 391e84bd9..a638cbe71 100644
--- a/viewfeed.js
+++ b/viewfeed.js
@@ -858,9 +858,9 @@ function selectionRemoveLabel(id) {
return;
}
- var ok = confirm(__("Remove selected articles from label?"));
+// var ok = confirm(__("Remove selected articles from label?"));
- if (ok) {
+// if (ok) {
var query = "backend.php?op=rpc&subop=removeFromLabel&ids=" +
param_escape(ids.toString()) + "&lid=" + param_escape(id);
@@ -875,7 +875,7 @@ function selectionRemoveLabel(id) {
all_counters_callback2(transport);
} });
- }
+// }
} catch (e) {
exception_error("selectionAssignLabel", e);
@@ -893,9 +893,9 @@ function selectionAssignLabel(id) {
return;
}
- var ok = confirm(__("Assign selected articles to label?"));
+// var ok = confirm(__("Assign selected articles to label?"));
- if (ok) {
+// if (ok) {
cache_invalidate("F:" + (-11 - id));
@@ -910,7 +910,7 @@ function selectionAssignLabel(id) {
all_counters_callback2(transport);
} });
- }
+// }
} catch (e) {
exception_error("selectionAssignLabel", e);