Reputation: 59
I’m completely new to Electron JS and I’ve tried reading through the documentation, but no to avail.
I was just wondering if there was a way to create a browser window, then show the window in behind of all the running applications. Is that possible?
Upvotes: 0
Views: 747
Reputation: 2723
You can use win.focus()
(documentation here) on other windows to put them on top, letting the new one behind.
Edit:
Upvotes: 1