1.0.6 • Published 2 years ago

@oneup_network/dialogify v1.0.6

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

Dialogify

A javascript plugin for creating dialog, implements with HTMLDialogElement.

Basic usage

new Dialogify('dialog content')
    .title('dialog title')
    .buttons([{type:Dialogify.BUTTON_PRIMARY}])
    .showModal();

// alternate alert, confirm and prompt
(async function() {
    await Dialogify.alert('Alert!!');

    if (await Dialogify.confirm('Yes or no?')) {
        // blah..
    }

    const answer = await Dialogify.prompt('Question?');
    // if (answer == blah...)
})();

basic dialogify

Usage and examples

https://oneupnetwork.github.io/dialogify/

Dependencies

Browser compatibility

All modern browser

Designed by

Phoebe

Contribute

  • Fork & clone this repo
    npm install
    npm run build
  • Create branch and commit your changes
  • Open a pull request

Feel free to contribute

License

MIT

1.0.6

2 years ago

1.0.5

2 years ago

1.0.3

4 years ago