summaryrefslogtreecommitdiff
path: root/plugins/share/share.js
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/share/share.js')
-rw-r--r--plugins/share/share.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/share/share.js b/plugins/share/share.js
index 4a6a65ce6..a22e01715 100644
--- a/plugins/share/share.js
+++ b/plugins/share/share.js
@@ -12,7 +12,7 @@ function shareArticle(id) {
newurl: function() {
if (confirm(__("Generate new share URL for this article?"))) {
- notify_progress("Trying to change URL...", true);
+ Notify.progress("Trying to change URL...", true);
const query = { op: "pluginhandler", plugin: "share", method: "newkey", id: id };
@@ -34,10 +34,10 @@ function shareArticle(id) {
const img = $("SHARE-IMG-" + id);
if (img) img.src = img.src.replace("notshared.png", "share.png");
- notify('');
+ Notify.close();
} else {
- notify_error("Could not change URL.");
+ Notify.error("Could not change URL.");
}
}
});
@@ -47,7 +47,7 @@ function shareArticle(id) {
unshare: function() {
if (confirm(__("Remove sharing for this article?"))) {
- notify_progress("Trying to unshare...", true);
+ Notify.progress("Trying to unshare...", true);
const query = { op: "pluginhandler", plugin: "share", method: "unshare", id: id };