From: Andrew Dolgov Date: Fri, 30 Nov 2018 11:39:06 +0000 (+0300) Subject: remove some unnecessary element IDs X-Git-Tag: 18.12~8 X-Git-Url: https://git.wh0rd.org/?p=tt-rss.git;a=commitdiff_plain;h=67cdf4cf123ef4ac04baba881b3443e64c90d9a4 remove some unnecessary element IDs rework plugins/note to use xhrJson() --- diff --git a/classes/feeds.php b/classes/feeds.php index 2bd9b0e6..d6da225e 100755 --- a/classes/feeds.php +++ b/classes/feeds.php @@ -417,7 +417,7 @@ class Feeds extends Handler_Protected { $reply['content'] .= "
"; - $reply['content'] .= "" . truncate_string($line["title"], 200); @@ -523,7 +523,7 @@ class Feeds extends Handler_Protected { } // data-article-id included for context menu - $tmp_content .= " @@ -564,7 +564,7 @@ class Feeds extends Handler_Protected { $tmp_content .= "
"; //cdmHeader - $tmp_content .= "
"; + $tmp_content .= "
"; $tmp_content .= "
"; if ($line['note']) { diff --git a/plugins/note/note.js b/plugins/note/note.js index 022fc88e..bf69a680 100644 --- a/plugins/note/note.js +++ b/plugins/note/note.js @@ -12,31 +12,26 @@ function editArticleNote(id) { style: "width: 600px", execute: function() { if (this.validate()) { - var query = dojo.objectToQuery(this.attr('value')); - notify_progress("Saving article note...", true); - new Ajax.Request("backend.php", { - parameters: query, - onComplete: function(transport) { - notify(''); - dialog.hide(); - - var reply = JSON.parse(transport.responseText); - - cache_delete("article:" + id); + xhrJson("backend.php", this.attr('value'), (reply) => { + notify(''); + dialog.hide(); - var elem = $("POSTNOTE-" + id); + if (reply) { + cache_delete("article:" + id); - if (elem) { - Element.hide(elem); - elem.innerHTML = reply.note; + var elem = $("POSTNOTE-" + id); - if (reply.raw_length != 0) - new Effect.Appear(elem); - } + if (elem) { + Element.hide(elem); + elem.innerHTML = reply.note; - }}); + if (reply.raw_length != 0) + new Effect.Appear(elem); + } + } + }); } }, href: query,