X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=tools%2Fhtdocs%2Fmkws.js;h=1663349d179851eb69ae5c5150ea0435f3820c0f;hb=6a7d796b9439b66671e4d206d071fe5d71455a55;hp=6b30ed212600bfd834be624f5122e2b94d4f4b31;hpb=6ecc86b6282bdd670ee05421442e9db4ae4b1350;p=mkws-moved-to-github.git diff --git a/tools/htdocs/mkws.js b/tools/htdocs/mkws.js index 6b30ed2..1663349 100644 --- a/tools/htdocs/mkws.js +++ b/tools/htdocs/mkws.js @@ -235,6 +235,11 @@ function my_onrecord(data) { function my_onbytarget(data) { var targetDiv = document.getElementById("mkwsBytarget"); + if (!targetDiv) { + // No mkwsTargets div. + return; + } + var table ='' +''; @@ -524,7 +529,6 @@ function mkws_html_all(config) { sort_default: "relevance", perpage_default: 20, query_width: 50, - switch_menu: false, /* show/hide Records|Targets menu */ lang_menu: true, /* show/hide language menu */ sort_menu: true, /* show/hide sort menu */ perpage_menu: true, /* show/hide perpage menu */ @@ -672,11 +676,6 @@ function mkws_html_switch(config) { No information available yet.\ '); $("#mkwsTargets").css("display", "none"); - - if (!config.switch_menu) { - debug("disable switch menu"); - $("#mkwsSwitch").css("display", "none"); - } } function mkws_html_sort(config) { @@ -845,6 +844,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 +903,7 @@ $.extend({ var popup = '\
\ -
\ +
\
\
\
\ @@ -913,7 +915,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 +930,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, @@ -974,4 +983,13 @@ function debug(string) { /* magic */ -$(document).ready(function() { mkws_html_all(mkws_config) }); +$(document).ready(function() { + try { + mkws_html_all(mkws_config) + } + + catch (e) { + mkws_config.error = e.message; + // alert(e.message); + } +});
Target IDHitsDiagsRecordsState