Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ Notable changes to this project are documented in this file. The format is based
Breaking changes:

New features:
- Added `close` function for `Window` (#78 by @jmp-0x7C0)

Bugfixes:

Expand Down
6 changes: 6 additions & 0 deletions src/Web/HTML/Window.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,12 @@ export function _open(url) {
};
}

export function close(window) {
return function () {
return window.close();
};
}

export function outerHeight(window) {
return function () {
return window.outerHeight;
Expand Down
3 changes: 3 additions & 0 deletions src/Web/HTML/Window.purs
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ module Web.HTML.Window
, moveBy
, moveTo
, open
, close
, outerHeight
, outerWidth
, print
Expand Down Expand Up @@ -89,6 +90,8 @@ foreign import _open
-> Window
-> Effect (Nullable Window)

foreign import close :: Window -> Effect Unit

foreign import outerHeight :: Window -> Effect Int

foreign import outerWidth :: Window -> Effect Int
Expand Down