1.0.0 • Published 5 years ago
jasop v1.0.0
Jasop
A window.open
JavaScript wrapper.
Install
npm install jasop
Usage
const jasop = require("jasop");
jasop(
"https://example.com", // URL
{
height: 100, // You can use any window.open option
scrollbars: true, // Booleans will the parsed
width: 200, // Everything else will be converted to a string
top: 100, // Options are polyfilled
title: "MyWindow", // Custom window title
replace: true // History behaviour
}
)
// window.open("https://example.com", "MyWindow", "height=100,scrollbars=yes,width=200,top=100,screenY=100", true)
API
jasop(url, options?)
url
Type: string (url)
The URL to open.
options
Type: object
The options to use. Refer to MDN