19 lines
361 B
JavaScript
19 lines
361 B
JavaScript
/* global dijit, Plugins, __ */
|
|
|
|
Plugins.Psql_Trgm = {
|
|
showRelated: function (id) {
|
|
const query = "backend.php?op=pluginhandler&plugin=af_psql_trgm&method=showrelated¶m=" + encodeURIComponent(id);
|
|
|
|
const dialog = new dijit.Dialog({
|
|
title: __("Related articles"),
|
|
execute: function () {
|
|
//
|
|
},
|
|
href: query,
|
|
});
|
|
|
|
dialog.show();
|
|
}
|
|
};
|
|
|