summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2018-12-06 20:38:55 +0300
committerAndrew Dolgov <[email protected]>2018-12-06 20:38:55 +0300
commit7805b291b6617252fe6ac64759af859ab09d2e28 (patch)
tree679183629d5aa8ec32a6e35ee463fea4a431dff2 /js
parentdb3c7d2050905c864d784e225719c02e26703b28 (diff)
update floating title in toggleUnread functions post-xhr
Diffstat (limited to 'js')
-rwxr-xr-xjs/Headlines.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/js/Headlines.js b/js/Headlines.js
index de6751598..b0a74f801 100755
--- a/js/Headlines.js
+++ b/js/Headlines.js
@@ -441,6 +441,7 @@ define(["dojo/_base/declare"], function (declare) {
xhrPost("backend.php", query, (transport) => {
App.handleRpcJson(transport);
if (callback) callback(transport);
+ Headlines.updateFloatingTitle(true);
});
},
selectionToggleMarked: function (ids) {
@@ -635,6 +636,7 @@ define(["dojo/_base/declare"], function (declare) {
xhrPost("backend.php",
{op: "rpc", method: "catchupSelected", cmode: cmode, ids: id}, (transport) => {
App.handleRpcJson(transport);
+ Headlines.updateFloatingTitle(true);
});
}
},