From: Wolfram Schneider Date: Thu, 22 Aug 2013 11:48:16 +0000 (+0000) Subject: Merge branch 'master' of ssh://git.indexdata.com:222/home/git/private/mkws X-Git-Tag: 0.9.1~228^2 X-Git-Url: http://sru.miketaylor.org.uk/?a=commitdiff_plain;h=e299cab8b3ba293f5307984f4da66465b6b6baa4;hp=770bd29a832cffc1de7287ee8f806b5f938b6bf7;p=mkws-moved-to-github.git Merge branch 'master' of ssh://git.indexdata.com:222/home/git/private/mkws --- diff --git a/tools/htdocs/mkws.js b/tools/htdocs/mkws.js index 6b30ed2..5053027 100644 --- a/tools/htdocs/mkws.js +++ b/tools/htdocs/mkws.js @@ -845,6 +845,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 = '
\
\ @@ -901,7 +904,7 @@ $.extend({ var popup = '\
\ -
\ +
\
\
\
\ @@ -913,7 +916,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 { @@ -928,11 +931,18 @@ 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); + // make sure that jquery-ui was loaded afte jQuery core lib, e.g.: + // + if (!$.ui) { + debug("Error: jquery-ui.js is missing, did you included it after jquery core in the HTML file?"); + return; + } + $(id_popup).dialog({ closeOnEscape: true, autoOpen: false,