You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
506 B
JavaScript
22 lines
506 B
JavaScript
/* global dijit, dojo, Plugins, xhr, __ */
|
|
|
|
Plugins.Psql_Trgm = {
|
|
showRelated: function (id) {
|
|
const dialog = new dijit.Dialog({
|
|
title: __("Related articles"),
|
|
content: __("Loading, please wait...")
|
|
});
|
|
|
|
const tmph = dojo.connect(dialog, "onShow", null, function (/* e */) {
|
|
dojo.disconnect(tmph);
|
|
|
|
xhr.post("backend.php", {op: 'pluginhandler', plugin: 'af_psql_trgm', method: 'showrelated', id: id}, (reply) => {
|
|
dialog.attr('content', reply);
|
|
});
|
|
});
|
|
|
|
dialog.show();
|
|
}
|
|
};
|
|
|