Skip to content

Releases: nakupanda/bootstrap3-dialog

v1.32 Released!

14 Jul 01:12
Compare
Choose a tag to compare

Change logs:

1, Reorganized files.

  • dist
  • examples
  • src

2, Some small improvements.

v1.31 Released!

23 Jun 09:47
Compare
Choose a tag to compare

Change logs:

*1, A new option 'animate' available. *

Set it to false to disable fading effect, see example here: http://nakupanda.github.io/bootstrap3-dialog/#dialog-animate

1, Added build tool support.

Gulp is supported currently.

1, Bower package support.

Bower package is available currently.

v1.30 Released!

13 Jun 02:36
Compare
Choose a tag to compare

Change logs:

1, You can stop closing the dialog by making 'onhide' returns false.

See example here http://nakupanda.github.io/bootstrap3-dialog/#stop-closing-dialog

1, Other small improvements.

Too small to remember...

v1.29 Released!

11 Jun 02:15
Compare
Choose a tag to compare

Change logs:

1, Fixed a coding mistake.

if(typeof something !== undefined) --> if(typeof something !== 'undefined')

v1.28 Released!

23 May 06:05
Compare
Choose a tag to compare

Change logs:

1, Just some minor improvements ◠◡◠ .

v1.27 Released!

10 Apr 01:46
Compare
Choose a tag to compare

Change logs:

1, Two more events are supported: onshown and onhidden.

See the Dialog events section in Example Page for details.

v1.26 Released!

09 Apr 03:18
Compare
Choose a tag to compare

Change logs:

1, New option 'nl2br'

Setting option 'nl2br' to true to enable auto line breaking.

Default value is true, set it to false when necessary.

2, Footer will be hidden if there is no button to display.

If you still need modal footer displayed you can call dialog.getModalFooter().show() at appropriate time, for example after dialog has realized.

3, Default options are configurable.

If you want all dialogs has some same settings you can try:

BootstrapDialog.configDefaultOptions({
type: BootstrapDialog.TYPE_PRIMARY,
title: 'Hello Monkey!',
..... // Other available options.
});

v1.25 released!

04 Mar 01:58
Compare
Choose a tag to compare

Change logs:

1, Advanced alert window.
See http://nakupanda.github.io/bootstrap3-dialog/#advanced-alert-window

2, Fixed a writing mistake and a special character problem.

v1.24 released

28 Feb 03:16
Compare
Choose a tag to compare

Change logs:

1, Draggable dialog.
See http://nakupanda.github.io/bootstrap3-dialog/#dialog-draggable

2, AMD Support.
See #14

v1.23 released

12 Feb 08:06
Compare
Choose a tag to compare

Change logs:

Fixed a bug that caused by incorrect content generating order.