From 3d11c61f326ef133427f6f37de4429e879c725f2 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Fri, 12 Feb 2021 15:22:10 +0300 Subject: * OPML import: don't reload everything, just feed tree * dialogs: use auto-destroying dialog for almost all dialogs instead of destroying them manually * some general dialog-related cleanup --- plugins/share/share.js | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) (limited to 'plugins/share') diff --git a/plugins/share/share.js b/plugins/share/share.js index 507f27f84..3fc42d654 100644 --- a/plugins/share/share.js +++ b/plugins/share/share.js @@ -1,11 +1,10 @@ +/* global Plugins, xhrJson, Notify, fox, xhrPost, __ */ + Plugins.Share = { shareArticle: function(id) { - if (dijit.byId("shareArticleDlg")) - dijit.byId("shareArticleDlg").destroyRecursive(); - const query = "backend.php?op=pluginhandler&plugin=share&method=shareArticle¶m=" + encodeURIComponent(id); - const dialog = new dijit.Dialog({ + const dialog = new fox.SingleUseDialog({ id: "shareArticleDlg", title: __("Share article by URL"), newurl: function () { @@ -73,7 +72,4 @@ Plugins.Share = { const img = $("SHARE-IMG-" + id); img.addClassName("shared"); } -}; - - - +} -- cgit v1.2.3