-
Notifications
You must be signed in to change notification settings - Fork 108
Open
Labels
Description
I am so grateful for this package.
Now I want to set features.left and features.top myself.
How about skipping centering if left and top is set?
react-new-window/src/NewWindow.js
Lines 73 to 77 in 2417b08
| } else if (center === 'parent') { | |
| features.left = | |
| window.top.outerWidth / 2 + window.top.screenX - features.width / 2 | |
| features.top = | |
| window.top.outerHeight / 2 + window.top.screenY - features.height / 2 |
or adding new option to center prop?
react-new-window/src/NewWindow.js
Line 177 in 2417b08
| center: PropTypes.oneOf(['parent', 'screen']), |
Reactions are currently unavailable