notiflix / Notiflix

Notiflix is a pure JavaScript library for client-side non-blocking notifications, popup boxes, loading indicators, and more that makes your web projects much better.
https://notiflix.github.io
MIT License
647 stars 55 forks source link

[BUG] - Dismiss Notiflix.Confirm on Cancel Cb Option? #56

Closed khakimsetia closed 2 years ago

khakimsetia commented 2 years ago

How to hide Notiflix.Confirm dialog when cancel?

Notiflix.Confirm.show(
  'Notiflix Confirm',
  'Do you agree with me?',
  'Yes',
  'No',
  function okCb() {
    alert('Thank you.');
  },
  function cancelCb() {
    **HOW Dismiss this dialog?**
  });
furcan commented 2 years ago

Hi, The Confirm module dialogs will be removed automatically when the ok or the cancel button has been clicked. Thanks.