X-Git-Url: http://sru.miketaylor.org.uk/?a=blobdiff_plain;f=experiments%2Fspclient%2Fmkws.js;h=84bb074321abfe2d8fe278530e4cb03d803da0a4;hb=b166e2f5a7e898d44ef2aeb1d4ebd48a1820c88d;hp=e2e3ccf0818068b6a2642de5c54a306fd58df5df;hpb=ae2eeb42bdc5a7a68665ad10e76a86ffefa45be9;p=mkws-moved-to-github.git diff --git a/experiments/spclient/mkws.js b/experiments/spclient/mkws.js index e2e3ccf..84bb074 100644 --- a/experiments/spclient/mkws.js +++ b/experiments/spclient/mkws.js @@ -160,12 +160,12 @@ function my_onstat(data) { function my_onterm(data) { // no facets if (!mkws_config.facets || mkws_config.facets.length == 0) { - $("#mkwsTermlists").parent().hide(); + $("#mkwsTermlists").hide(); return; } // display if we first got results - $("#mkwsTermlists").parent().show(); + $("#mkwsTermlists").show(); var acc = []; acc.push('
' + M('Termlists') + '
'); @@ -602,7 +602,7 @@ function mkws_html_all(config) { domReady(); // on first page, hide the termlist - $(document).ready(function() { $("#mkwsTermlists").parent().hide(); } ); + $(document).ready(function() { $("#mkwsTermlists").hide(); } ); } /* Responsive web design - change layout on the fly depending on @@ -778,14 +778,14 @@ function mkws_mobile_resize () { $("#" + list[i]).hide(); } - $("#mkwsTermlists").parent().hide(); - obj = $("#mkwsTermlists").parent().html(); + $("#mkwsTermlists").hide(); + obj = $("#mkwsTermlists").html(); $("#mkwsShiftedTermlists").html(obj); } else { for(var i = 0; i < list.length; i++) { $("#" + list[i]).show(); } - $("#mkwsTermlists").parent().show(); + $("#mkwsTermlists").show(); $("#mkwsShiftedTermlists").html(""); } };