niutech / showModalDialog

window.showModalDialog polyfill using a <dialog> element
https://niutech.github.io/showModalDialog/demo.html
Apache License 2.0
177 stars 88 forks source link

feat: multiple dialog, drag n' drop, new style #47

Closed macmessa closed 5 years ago

macmessa commented 5 years ago

Adding:


function showMaximizedDialog(url, args) {
  // showModalDialog.interface
  var WindowParams = [
    'dialogLeft:0',
    'dialogTop:0',
    'dialogHeight:' + screen.availHeight + 'px',
    'dialogWidth:' + screen.availWidth + 'px'
  ].join(';');

  return window.showModalDialog(url, args, WindowParams);