X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Fmkws-popup.js;h=ca38e5d86b08977c2ea11a89fe09d9faa0b85664;hb=cfaf82446f3eee1f51784817bb43cf2ea8862679;hp=48b50599cffa58b8e6c4ec9f39af24250c29162c;hpb=7f2f5aff2f7ed1b617eac2fabf669a9ed698db5d;p=mkws-moved-to-github.git diff --git a/src/mkws-popup.js b/src/mkws-popup.js index 48b5059..ca38e5d 100644 --- a/src/mkws-popup.js +++ b/src/mkws-popup.js @@ -4,7 +4,7 @@ // "use strict"; $(document).ready(function () { - // mkws.registerWidgetType('PopupWindow', function() { +// mkws.registerWidgetType('WmkwsPopup', function() { var $ = mkws.$; var debug = mkws.log; debug("init popup window"); @@ -14,7 +14,7 @@ $(document).ready(function () { return; } - var popup_window = $(".PopupWindow"); + var popup_window = $(".WmkwsPopup"); if (!popup_window) { debug("no popup found, skip"); return; @@ -22,6 +22,7 @@ $(document).ready(function () { debug("found popup windows: " + popup_window.length); } + // more than one widget on a page are possible popup_window.each(function (i) { var that = $(this); @@ -45,5 +46,13 @@ $(document).ready(function () { }, close: function () {} }); + + // open at search query submit + var id_botton = that.attr("popup_button"); + if (id_botton) { + $(id_botton).button().click(function () { + that.dialog("open"); + }); + } }); });