summaryrefslogtreecommitdiff
path: root/plugins/note/note.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2021-02-17 14:56:36 +0300
committerAndrew Dolgov <[email protected]>2021-02-17 14:56:36 +0300
commit2b2833bb4fa6f958b89a83adea89d9e7c73daee7 (patch)
tree8e57050458d81dfe6841150c82b8013af5d14eb2 /plugins/note/note.js
parent4632d6cf558774cfcb17b3b4cf10399c3626096b (diff)
plugins: load dialogs via xhr instead of http
Diffstat (limited to 'plugins/note/note.js')
-rw-r--r--plugins/note/note.js15
1 files changed, 10 insertions, 5 deletions
diff --git a/plugins/note/note.js b/plugins/note/note.js
index ab2ed9208..215058b21 100644
--- a/plugins/note/note.js
+++ b/plugins/note/note.js
@@ -1,11 +1,8 @@
-/* global Plugins, xhrJson, Notify, fox, __ */
+/* global dojo, xhrPost, Plugins, xhrJson, Notify, fox, __ */
Plugins.Note = {
edit: function(id) {
- const query = "backend.php?op=pluginhandler&plugin=note&method=edit&param=" + encodeURIComponent(id);
-
const dialog = new fox.SingleUseDialog({
- id: "editNoteDlg",
title: __("Edit article note"),
execute: function () {
if (this.validate()) {
@@ -30,7 +27,15 @@ Plugins.Note = {
});
}
},
- href: query,
+ content: __("Loading, please wait...")
+ });
+
+ const tmph = dojo.connect(dialog, 'onShow', function () {
+ dojo.disconnect(tmph);
+
+ xhrPost("backend.php", {op: "pluginhandler", plugin: "note", method: "edit", id: id}, (transport) => {
+ dialog.attr('content', transport.responseText);
+ });
});
dialog.show();