blob: d2ed5b5998430bbf95e259d6fa514579e9244693 [file] [log] [blame]
Marc Kupietzcdd51302018-03-19 16:36:54 +01001function queryKorAPpoliqarp(query) {
2 window.open('http://korap.ids-mannheim.de/kalamar/?ql=poliqarp&q='+encodeURIComponent(query), 'KorAP');
3}
4
5
6function queryKorAPalternatives(alt1, alt2) {
7 queryKorAPpoliqarp("{1:[orth="+ alt1 +"]} | {2:[orth=" + alt2 +"]}");
8}
9
10function paradigmatorClick(e, target, paradigmator) {
11 if (e.which === 2) {
12 e.preventDefault();
13 queryKorAPalternatives(target, paradigmator);
14 return false;
15 }
16}