tmwindow
v1.0.10
Published
Library for in-site JavaScript windows
Downloads
2
Maintainers
Readme
TmWindow
➡ Full API Reference (TypeDoc) ⬅
Install
Using yarn
yarn add tmwindow
using npm
npm install tmwindow
Usage
const TmWindow = require('tmwindow');
//create window
const tmw = new TmWindow('My Window');
//show window
tmw.open();
//close window
tmw.close();
//remove dom element
tmw.remove();