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.
47 lines
1.2 KiB
JavaScript
47 lines
1.2 KiB
JavaScript
function editArticleNote(id) {
|
|
try {
|
|
|
|
var query = "backend.php?op=pluginhandler&plugin=note&method=edit¶m=" + encodeURIComponent(id);
|
|
|
|
if (dijit.byId("editNoteDlg"))
|
|
dijit.byId("editNoteDlg").destroyRecursive();
|
|
|
|
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('');
|
|
dialog.hide();
|
|
|
|
if (reply) {
|
|
ArticleCache.del(id);
|
|
|
|
var elem = $("POSTNOTE-" + id);
|
|
|
|
if (elem) {
|
|
Element.hide(elem);
|
|
elem.innerHTML = reply.note;
|
|
|
|
if (reply.raw_length != 0)
|
|
new Effect.Appear(elem);
|
|
}
|
|
}
|
|
});
|
|
}
|
|
},
|
|
href: query,
|
|
});
|
|
|
|
dialog.show();
|
|
|
|
} catch (e) {
|
|
exception_error("editArticleNote", e);
|
|
}
|
|
}
|
|
|