Skip to content

OneupNetwork/dialogify

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

90 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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