Advertisement
KoctrX

Untitled

Jun 24th, 2021
216
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. openWindow(url, width = 500, height = 500) {
  2. const { width: pcWidth, height: pcHeight } = window.screen;
  3. if(pcWidth < width) width = pcWidth;
  4. if(pcHeight < height) height = pcHeight;
  5.  
  6. const left = (pcWidth - width) / 2;
  7. const top = (pcHeight - height) / 2;
  8.  
  9. window.open(url, url, `width=${width},height=${height},left=${left},top=${top},resizable,scrollbars,status`);
  10. },
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement