1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-15 10:05:58 +00:00

remove infobox_callback2

This commit is contained in:
Andrew Dolgov
2018-12-01 10:55:39 +03:00
parent c151607b91
commit e720e6b628

View File

@@ -342,40 +342,27 @@ function displayDlg(title, id, param, callback) {
const query = { op: "dlg", method: id, param: param }; const query = { op: "dlg", method: id, param: param };
xhrPost("backend.php", query, (transport) => { xhrPost("backend.php", query, (transport) => {
infobox_callback2(transport, title); try {
if (callback) callback(transport);
});
return false;
}
function infobox_callback2(transport, title) {
let dialog = false;
if (dijit.byId("infoBox")) {
dialog = dijit.byId("infoBox");
}
//console.log("infobox_callback2");
notify('');
const content = transport.responseText; const content = transport.responseText;
let dialog = dijit.byId("infoBox");
if (!dialog) { if (!dialog) {
dialog = new dijit.Dialog({ dialog = new dijit.Dialog({
title: title, title: title,
id: 'infoBox', id: 'infoBox',
style: "width: 600px", style: "width: 600px",
onCancel: function() { onCancel: function () {
return true; return true;
}, },
onExecute: function() { onExecute: function () {
return true; return true;
}, },
onClose: function() { onClose: function () {
return true; return true;
}, },
content: content}); content: content
});
} else { } else {
dialog.attr('title', title); dialog.attr('title', title);
dialog.attr('content', content); dialog.attr('content', content);
@@ -384,6 +371,14 @@ function infobox_callback2(transport, title) {
dialog.show(); dialog.show();
notify(""); notify("");
if (callback) callback(transport);
} catch (e) {
exception_error(e);
}
});
return false;
} }
function getInitParam(key) { function getInitParam(key) {