javascript - How do I hide the outline in popup window -
i created popup/modal window in js, , need hide outline map container. init map used js code
self.mapdialogoptions = { autoopen: false, modal: true, draggable: false, resizable: false, height: 450, width: 1050, title: '', dialogclass: '', open: function () { $(this).find('#map-close').on('click', function () { $('#map-container').dialog('close'); self.ismapdialogvisible(false); }); } };
if click on popup (map) container appears outline see screenshot
in css file add:
#map-container { border-style: none; border-width: 0; }
Comments
Post a Comment