javascript - Strange jQuery dialog behaivor in Chrome. Working in IE but not in Chrome -
i hava dialog not working in chrome in ie.
i working in beta page:
http://www.parlamentoabierto.mx/ you can see malfunction if go map , click on it. modal background not disappearing.
dialog = $("#modal-mapa"); console.log(dialog); dialog.dialog({ autoopen: false, height: 400, width: 700, modal: true, draggable: false, resizable: false, dialogclass: 'ventanamodal', open: function(event, ui) { console.log(dialog.dialog('option','position')); $('.ui-widget-overlay').bind('click', function () { $(this).siblings('.ui-dialog').find('.ui-dialog-content').dialog('close'); }); } }); my guess can version of jquery not best wont easy correct.
Comments
Post a Comment