X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=tools%2Fhtdocs%2Fmkws.js;h=ab65016729cb1c404b53ed7130c0adecae168e6d;hb=cc3a54a92a3835530a629ee5c5bb0f5ab2d0defc;hp=bcb343573c01a64b227c0a1b394f44d61a612607;hpb=dd71fc65287d51413b5c683fa9a71caaf9441fab;p=mkws-moved-to-github.git diff --git a/tools/htdocs/mkws.js b/tools/htdocs/mkws.js index bcb3435..ab65016 100644 --- a/tools/htdocs/mkws.js +++ b/tools/htdocs/mkws.js @@ -822,93 +822,132 @@ function M(word) { * implement jQuery plugins */ jQuery.extend({ - // implement jQuery.parseQuerystring() for parsing URL parameters - parseQuerystring: function() { - var nvpair = {}; - var qs = window.location.search.replace('?', ''); - var pairs = qs.split('&'); - $.each(pairs, function(i, v){ - var pair = v.split('='); - nvpair[pair[0]] = pair[1]; - }); - return nvpair; - }, + // implement jQuery.parseQuerystring() for parsing URL parameters + parseQuerystring: function() { + var nvpair = {}; + var qs = window.location.search.replace('?', ''); + var pairs = qs.split('&'); + $.each(pairs, function(i, v){ + var pair = v.split('='); + nvpair[pair[0]] = pair[1]; + }); + return nvpair; + }, - debug2: function(string) { // delayed debug + debug2: function(string) { // delayed debug, internal variables are set after dom ready setTimeout(function() { debug(string); }, 500); }, - // service-proxy or pazpar2 - pazpar2: function(config) { - - // simple layout - var div = '
\ -
\ -
\ -
\ -
\ -
\ -
\ - Powered by MKWS © 2013 Index Data\ -
'; - - // new table layout - var table = '\ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ -
\ -
\ -
\ -
\ -
\ -
\ -
\ -
\ -
\ -
\ -
\ -
\ -
\ -
\ -
\ -
\ -
\ -
\ -
'; - - if (config && config.layout == 'div') { - this.debug2("jquery plugin layout: div"); - document.write(div); - } else { - this.debug2("jquery plugin layout: table"); - document.write(table); + // service-proxy or pazpar2 + pazpar2: function(config) { + // simple layout + var div = '
\ +
\ +
\ +
\ +
\ +
\ +
\ + Powered by MKWS © 2013 Index Data\ +
'; + + // new table layout + var table = '\ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ +
\ +
\ +
\ +
\ +
\ +
\ +
\ +
\ +
\ +
\ +
\ +
\ +
\ +
\ +
\ +
\ +
\ +
\ +
'; + + var popup = '\ +
\ +
\ +
\ +
\ +
\ +
\ +
\ +
\ +
\ +
\ + '; + + if (config && config.layout == 'div') { + this.debug2("jquery plugin layout: div"); + document.write(div); + } else if (config && config.layout == 'popup') { + this.debug2("jquery plugin layout: popup"); + document.write(popup); + } else { + this.debug2("jquery plugin layout: table"); + document.write(table); + } } - - } }); +function init_popup(config) { + $("#mkwsPopup").dialog({ + closeOnEscape: true, + autoOpen: false, + height: 760, + width: 880, + modal: true, + resizable: true, + buttons: { + Cancel: function() { + $(this).dialog("close"); + } + }, + close: function() { + // allFields.val( "" ).removeClass( "ui-state-error" ); + } + }); + + $("input#mkwsButton") + .button() + .click(function() { + $("#mkwsPopup").dialog("open"); + }); +}; + function debug(string) { if (!mkws_debug) return;