1.0.0 • Published 4 years ago

jasop v1.0.0

Weekly downloads
2
License
MIT
Repository
github
Last release
4 years ago

Jasop Travis CI Build Status

A window.open JavaScript wrapper.

NPM Badge

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

1.0.0

4 years ago

0.0.2

5 years ago

0.0.1

5 years ago