Controls

minimize()

Minimize the browser window.

Examples

index.js
Window.minimize(); // Minimize the window

maximize()

Maximize the browser window. Does not show it, run show() additionally before to ensure it’s visible / pops up.

Examples

index.js
Window.maximize(); // Maximize the window

show()

Show (unminimize) the browser window.

Examples

index.js
Window.show(); // Show the window
// Window.maximize() // Also maximise it after