X-Git-Url: http://jsfdemo.indexdata.com/?a=blobdiff_plain;f=tools%2Fhtdocs%2Fmkws.js;h=b09ce32b3116c5c63b3986dc38eaa91d947c8923;hb=a42495ef19e9aa2591a8fe5d05f1fb23cc27cf86;hp=0b1c9f7cf94ec37e927b445c836f21c08db240ba;hpb=a08f3775820e271e3949d524b3647038d07338f7;p=mkws-moved-to-github.git diff --git a/tools/htdocs/mkws.js b/tools/htdocs/mkws.js index 0b1c9f7..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 { @@ -925,8 +928,8 @@ function init_popup(obj) { var height = config.height || 760; var width = config.width || 880; - var id_button = config.button || "input#mkwsButton"; - var id_popup = config.popup || "#mkwsPopup"; + var id_button = config.id_button || "input#mkwsButton"; + var id_popup = config.id_popup || "#mkwsPopup"; debug("popup height: " + height + ", width: " + width);