Guest User

Untitled

a guest
Feb 24th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. let win = new BrowserWindow({
  2. width:800,
  3. height:600,
  4. title:"hola mundo!",
  5. maximizable:false,
  6. center:true,
  7. show:false
  8. })
  9. win.once('ready-to-show',()=>{
  10. win.show()
  11. })
  12. win.on('move',()=>{
  13. let position = win.getPosition()
  14. console.log(`la posicion de la ventana es :${position}`)
  15. })
Add Comment
Please, Sign In to add comment