add a 'docs' target
[mkws-moved-to-github.git] / tools / htdocs / mkws.js
index e4d339a..e90ff29 100644 (file)
@@ -3,7 +3,6 @@
 
 "use strict"; // HTML5: disable for debug >= 2
 
-
 /*
  * global config object: mkws_config
  *
@@ -27,7 +26,6 @@ var pazpar2path = mkws_config.use_service_proxy ? service_proxy_url : pazpar2_ur
 var usesessions = mkws_config.use_service_proxy ? false : true;
 
 
-(function ($) {
 var mkws_locale_lang = {
     "de": {
        "Authors": "Autoren",
@@ -312,7 +310,7 @@ function loadSelect ()
 // limit the query after clicking the facet
 function limitQuery (field, value)
 {
-    document.mkwsSearchForm.query.value += ' and ' + field + '="' + value + '"';
+    document.mkwsSearchForm.mkwsQuery.value += ' and ' + field + '="' + value + '"';
     onFormSubmitEventHandler();
 }
 
@@ -974,5 +972,3 @@ function debug(string) {
 
 /* magic */
 $(document).ready(function() { mkws_html_all(mkws_config) });
-
-})(jQuery);