From: Wolfram Schneider Date: Thu, 22 Aug 2013 11:28:55 +0000 (+0000) Subject: jquery.pazpar2() will handle the option id_popup X-Git-Tag: 0.9.1~228^2~1 X-Git-Url: http://git.indexdata.com/?p=mkws-moved-to-github.git;a=commitdiff_plain;h=a42495ef19e9aa2591a8fe5d05f1fb23cc27cf86 jquery.pazpar2() will handle the option id_popup --- diff --git a/tools/htdocs/mkws.js b/tools/htdocs/mkws.js index f0448d1..b09ce32 100644 --- a/tools/htdocs/mkws.js +++ b/tools/htdocs/mkws.js @@ -842,6 +842,9 @@ $.extend({ // service-proxy or pazpar2 pazpar2: function(config) { + var id_popup = config.id_popup || "#mkwsPopup"; + id_popup = id_popup.replace(/^#/, ""); + // simple layout var div = '
\
\ @@ -898,7 +901,7 @@ $.extend({ var popup = '\
\ -
\ +
\
\
\
\ @@ -910,7 +913,7 @@ $.extend({ this.debug2("jquery plugin layout: div"); document.write(div); } else if (config && config.layout == 'popup') { - this.debug2("jquery plugin layout: popup"); + this.debug2("jquery plugin layout: popup with id: " + id_popup); document.write(popup); $(document).ready( function() { init_popup(config); } ); } else {