From 625eb2222159cf2c5144e9df0e2277e9d4edb1cd Mon Sep 17 00:00:00 2001 From: Wolfram Schneider Date: Wed, 10 Jul 2013 15:12:35 +0000 Subject: [PATCH] call popup with config parameters, MKWS-31 --- tools/htdocs/mkws.js | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) 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, -- 1.7.10.4