diff options
| author | Andrew Dolgov <noreply@fakecake.org> | 2021-02-17 19:34:54 +0300 |
|---|---|---|
| committer | Andrew Dolgov <noreply@fakecake.org> | 2021-02-17 19:34:54 +0300 |
| commit | b16abc157ee584f4be80a537ee24ec9e5ff25496 (patch) | |
| tree | b09e841d5cc1be8b066ac831588d01792ea1ad01 /js/Article.js | |
| parent | 92cb91e2e22282e3ad9da2f5312d7815720af6b6 (diff) | |
* App: rename hidden to hidden_tag
* search: use client dialog
* add some form field helpers
Diffstat (limited to 'js/Article.js')
| -rw-r--r-- | js/Article.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/js/Article.js b/js/Article.js index 4d400e2dc..a42d3af67 100644 --- a/js/Article.js +++ b/js/Article.js @@ -314,9 +314,9 @@ const Article = { const dialog = new fox.SingleUseDialog({ title: __("Edit article Tags"), content: ` - ${App.FormFields.hidden("id", id.toString())} - ${App.FormFields.hidden("op", "article")} - ${App.FormFields.hidden("method", "setArticleTags")} + ${App.FormFields.hidden_tag("id", id.toString())} + ${App.FormFields.hidden_tag("op", "article")} + ${App.FormFields.hidden_tag("method", "setArticleTags")} <header class='horizontal'> ${__("Tags for this article (separated by commas):")} |