@@ -, +, @@ selection --- authorities/merge.pl | 2 ++ .../prog/en/modules/authorities/merge.tt | 9 +++++++-- 2 files changed, 9 insertions(+), 2 deletions(-) --- a/authorities/merge.pl +++ a/authorities/merge.pl @@ -169,6 +169,8 @@ else { frameworkselect => \@frameworkselect, frameworkcode1 => $recordObj1->authtype, frameworkcode2 => $recordObj2->authtype, + frameworklabel1 => $frameworks->{$recordObj1->authtype}->{'authtypetext'}, + frameworklabel2 => $frameworks->{$recordObj2->authtype}->{'authtypetext'}, ); } } --- a/koha-tmpl/intranet-tmpl/prog/en/modules/authorities/merge.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/authorities/merge.tt @@ -23,6 +23,11 @@ $(document).ready(function(){ $.getJSON("/cgi-bin/koha/authorities/merge_ajax.pl", {frameworkcode : "[% framework %]" }, function(json) { tagslib = json; }); + + $('.preview-merge-reference').click(function (ev) { + ev.preventDefault(); + newin=window.open($(this).attr('href'),'merge_reference', 'width=1000,height=600,toolbar=false,scrollbars=yes'); + }); [% PROCESS mergejs %] }); @@ -76,8 +81,8 @@ function changeFramework(fw) {
Merge reference
    -
  1. -
  2. +
  3. +
  4. [% IF frameworkselect %]
  5. --