summaryrefslogtreecommitdiff
path: root/plugins/note/note.js
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/note/note.js')
-rw-r--r--plugins/note/note.js43
1 files changed, 19 insertions, 24 deletions
diff --git a/plugins/note/note.js b/plugins/note/note.js
index 836481c40..21c1ae51e 100644
--- a/plugins/note/note.js
+++ b/plugins/note/note.js
@@ -1,46 +1,41 @@
-function editArticleNote(id) {
- try {
-
- var query = "backend.php?op=pluginhandler&plugin=note&method=edit&param=" + encodeURIComponent(id);
+Plugins.Note = {
+ edit: function(id) {
+ const query = "backend.php?op=pluginhandler&plugin=note&method=edit&param=" + encodeURIComponent(id);
if (dijit.byId("editNoteDlg"))
dijit.byId("editNoteDlg").destroyRecursive();
- dialog = new dijit.Dialog({
+ const dialog = new dijit.Dialog({
id: "editNoteDlg",
title: __("Edit article note"),
style: "width: 600px",
- execute: function() {
+ execute: function () {
if (this.validate()) {
Notify.progress("Saving article note...", true);
xhrJson("backend.php", this.attr('value'), (reply) => {
- Notify.close();
- dialog.hide();
+ Notify.close();
+ dialog.hide();
- if (reply) {
- ArticleCache.del(id);
+ if (reply) {
+ ArticleCache.del(id);
- var elem = $("POSTNOTE-" + id);
+ var elem = $("POSTNOTE-" + id);
- if (elem) {
- Element.hide(elem);
- elem.innerHTML = reply.note;
+ if (elem) {
+ Element.hide(elem);
+ elem.innerHTML = reply.note;
- if (reply.raw_length != 0)
- new Effect.Appear(elem);
- }
- }
- });
+ if (reply.raw_length != 0)
+ new Effect.Appear(elem);
+ }
+ }
+ });
}
},
href: query,
});
dialog.show();
-
- } catch (e) {
- exception_error("editArticleNote", e);
}
-}
-
+}; \ No newline at end of file