sweetalert2

✨ A beautiful, responsive, highly customizable and accessible (WAI-ARIA) replacement for JavaScript's popup boxes. Zero dependencies. 🇺🇦

MIT License

Downloads
2.6M
Stars
16.8K
Committers
122
sweetalert2 -

Published by limonte over 8 years ago

sweetalert2 - Promise instead of callback.

Published by limonte over 8 years ago

Breaking changes in 1.0.0

1. Promise instead of callback.

Before 1.0.0 callback function was used to handle the result of modal dialog:

swal(
  {title: 'Are you sure?', showCancelButton: true}, 
  function(isConfirm) {
    ...
  }
);

Starting with v1.0.0 promise should be used instead of the callback:

swal({title: 'Are you sure?', showCancelButton: true}).then(
  function(isConfirm) {
    ...
  }
);

isConfirm is:

  • true for confirm button
  • false for calcel button
  • undefined for outside click or if modal was closed by timer

2. IE is not supported by default

To enable IE10+ support, include es6-promise:

<script src="bower_components/es6-promise/promise.min.js"></script>
sweetalert2 -

Published by limonte over 8 years ago

sweetalert2 -

Published by limonte over 8 years ago

sweetalert2 -

Published by limonte over 8 years ago

sweetalert2 -

Published by limonte over 8 years ago

Added reverseButtons parameter

sweetalert2 -

Published by limonte over 8 years ago

sweetalert2 -

Published by limonte over 8 years ago

Migration Notes:

  • Parameter imageSize is replaced by imageWidth and imageHeight
  • Added imageClass.
sweetalert2 -

Published by limonte over 8 years ago

sweetalert2 -

Published by limonte over 8 years ago

sweetalert2 -

Published by limonte over 8 years ago

sweetalert2 -

Published by limonte over 8 years ago

sweetalert2 -

Published by limonte over 8 years ago

sweetalert2 -

Published by limonte over 8 years ago

sweetalert2 -

Published by limonte over 8 years ago

sweetalert2 -

Published by limonte almost 9 years ago

sweetalert2 -

Published by limonte almost 9 years ago

sweetalert2 -

Published by limonte almost 9 years ago

sweetalert2 -

Published by limonte almost 9 years ago

sweetalert2 -

Published by limonte almost 9 years ago