summaryrefslogtreecommitdiff
path: root/plugins/af_psql_trgm/init.js
blob: a22e673f6743aa00b62af327e62becd7b43050ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* global dijit, Plugins, __ */

Plugins.Psql_Trgm = {
	showRelated: function (id) {
		const query = "backend.php?op=pluginhandler&plugin=af_psql_trgm&method=showrelated&param=" + encodeURIComponent(id);

		const dialog = new dijit.Dialog({
			title: __("Related articles"),
			execute: function () {
				//
			},
			href: query,
		});

		dialog.show();
	}
};