summaryrefslogtreecommitdiff
path: root/plugins/share/share_prefs.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2021-02-19 13:44:56 +0300
committerAndrew Dolgov <[email protected]>2021-02-19 13:44:56 +0300
commit660a1bbe011fef5f0fa6bb0af43521fed7598cc7 (patch)
treef31ee123db91e479b93a6d086fd78de2ecfae014 /plugins/share/share_prefs.js
parentbb4e4282f46824308aebc2eaeac29fa29f8687ad (diff)
* switch to xhr.post() almost everywhere
* call App.handlerpcjson() automatically on json request (if possible) * show net/log indicators in prefs
Diffstat (limited to 'plugins/share/share_prefs.js')
-rw-r--r--plugins/share/share_prefs.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/share/share_prefs.js b/plugins/share/share_prefs.js
index 91f979daf..d974af618 100644
--- a/plugins/share/share_prefs.js
+++ b/plugins/share/share_prefs.js
@@ -1,12 +1,12 @@
-/* global Plugins, Notify, xhrPost */
+/* global Plugins, Notify, xhr, App */
Plugins.Share = {
clearKeys: function() {
if (confirm(__("This will invalidate all previously shared article URLs. Continue?"))) {
Notify.progress("Clearing URLs...");
- xhrPost("backend.php", App.getPhArgs("share", "clearArticleKeys"), (transport) => {
- Notify.info(transport.responseText);
+ xhr.post("backend.php", App.getPhArgs("share", "clearArticleKeys"), (reply) => {
+ Notify.info(reply);
});
}