From: Wolfram Schneider Date: Wed, 10 Jul 2013 15:12:35 +0000 (+0000) Subject: call popup with config parameters, MKWS-31 X-Git-Tag: 0.9.1~278 X-Git-Url: http://lists.indexdata.dk/cgi-bin?a=commitdiff_plain;ds=sidebyside;h=625eb2222159cf2c5144e9df0e2277e9d4edb1cd;p=mkws-moved-to-github.git call popup with config parameters, MKWS-31 --- diff --git a/tools/htdocs/mkws.js b/tools/htdocs/mkws.js index 32b295b..c928f9c 100644 --- a/tools/htdocs/mkws.js +++ b/tools/htdocs/mkws.js @@ -902,8 +902,7 @@ jQuery.extend({
\
\
\ - \ - '; + ' if (config && config.layout == 'div') { this.debug2("jquery plugin layout: div"); @@ -911,6 +910,7 @@ jQuery.extend({ } else if (config && config.layout == 'popup') { this.debug2("jquery plugin layout: popup"); document.write(popup); + $(document).ready( function() { init_popup(config); } ); } else { this.debug2("jquery plugin layout: table"); document.write(table); @@ -918,15 +918,16 @@ jQuery.extend({ } }); -function init_popup(config) { - if (!config) - config = {}; +function init_popup(obj) { + var config = obj && obj.config ? obj.config : {}; var height = config.height || 760; var width = config.width || 880; var id_button = config.button || "input#mkwsButton"; var id_popup = config.popup || "#mkwsPopup"; + debug("popup height: " + height + ", width: " + width); + $(id_popup).dialog({ closeOnEscape: true, autoOpen: false,