summaryrefslogtreecommitdiff
path: root/js/Article.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/Article.js')
-rw-r--r--js/Article.js34
1 files changed, 4 insertions, 30 deletions
diff --git a/js/Article.js b/js/Article.js
index e2284b190..174015a61 100644
--- a/js/Article.js
+++ b/js/Article.js
@@ -131,37 +131,11 @@ const Article = {
});
},
openInNewWindow: function (id) {
+ /* global __csrf_token */
+ App.postOpenWindow("backend.php",
+ { "op": "article", "method": "redirect", "id": id, "csrf_token": __csrf_token });
- const w = window.open("");
-
- if (w) {
- w.opener = null;
-
- const form = document.createElement("form");
-
- form.setAttribute("method", "post");
- form.setAttribute("action", App.getInitParam("self_url_prefix") + "/backend.php");
-
- /* global __csrf_token */
-
- const params = { "op": "article", "method": "redirect", "id": id, "csrf_token": __csrf_token };
-
- for (const [k,v] of Object.entries(params)) {
- const field = document.createElement("input");
-
- field.setAttribute("name", k);
- field.setAttribute("value", v);
- field.setAttribute("type", "hidden");
-
- form.appendChild(field);
- }
-
- w.document.body.appendChild(form);
- form.submit();
-
- Headlines.toggleUnread(id, 0);
- }
-
+ Headlines.toggleUnread(id, 0);
},
render: function (article) {
App.cleanupMemory("content-insert");