You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
866 B
JavaScript
40 lines
866 B
JavaScript
Plugins.Note = {
|
|
edit: function(id) {
|
|
const query = "backend.php?op=pluginhandler&plugin=note&method=edit¶m=" + encodeURIComponent(id);
|
|
|
|
if (dijit.byId("editNoteDlg"))
|
|
dijit.byId("editNoteDlg").destroyRecursive();
|
|
|
|
const dialog = new dijit.Dialog({
|
|
id: "editNoteDlg",
|
|
title: __("Edit article note"),
|
|
style: "width: 600px",
|
|
execute: function () {
|
|
if (this.validate()) {
|
|
Notify.progress("Saving article note...", true);
|
|
|
|
xhrJson("backend.php", this.attr('value'), (reply) => {
|
|
Notify.close();
|
|
dialog.hide();
|
|
|
|
if (reply) {
|
|
const elem = $("POSTNOTE-" + id);
|
|
|
|
if (elem) {
|
|
elem.innerHTML = reply.note;
|
|
|
|
if (reply.raw_length != 0)
|
|
Element.show(elem);
|
|
else
|
|
Element.hide(elem);
|
|
}
|
|
}
|
|
});
|
|
}
|
|
},
|
|
href: query,
|
|
});
|
|
|
|
dialog.show();
|
|
}
|
|
}; |