mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-20 12:01:29 +00:00
remove confirmation prompt from assign/remove label actions
This commit is contained in:
12
viewfeed.js
12
viewfeed.js
@@ -858,9 +858,9 @@ function selectionRemoveLabel(id) {
|
|||||||
return;
|
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=" +
|
var query = "backend.php?op=rpc&subop=removeFromLabel&ids=" +
|
||||||
param_escape(ids.toString()) + "&lid=" + param_escape(id);
|
param_escape(ids.toString()) + "&lid=" + param_escape(id);
|
||||||
@@ -875,7 +875,7 @@ function selectionRemoveLabel(id) {
|
|||||||
all_counters_callback2(transport);
|
all_counters_callback2(transport);
|
||||||
} });
|
} });
|
||||||
|
|
||||||
}
|
// }
|
||||||
|
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
exception_error("selectionAssignLabel", e);
|
exception_error("selectionAssignLabel", e);
|
||||||
@@ -893,9 +893,9 @@ function selectionAssignLabel(id) {
|
|||||||
return;
|
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));
|
cache_invalidate("F:" + (-11 - id));
|
||||||
|
|
||||||
@@ -910,7 +910,7 @@ function selectionAssignLabel(id) {
|
|||||||
all_counters_callback2(transport);
|
all_counters_callback2(transport);
|
||||||
} });
|
} });
|
||||||
|
|
||||||
}
|
// }
|
||||||
|
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
exception_error("selectionAssignLabel", e);
|
exception_error("selectionAssignLabel", e);
|
||||||
|
|||||||
Reference in New Issue
Block a user