Releases: nakupanda/bootstrap3-dialog
v1.32 Released!
Change logs:
1, Reorganized files.
- dist
- examples
- src
2, Some small improvements.
v1.31 Released!
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!
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!
Change logs:
1, Fixed a coding mistake.
if(typeof something !== undefined) --> if(typeof something !== 'undefined')
v1.28 Released!
Change logs:
1, Just some minor improvements ◠◡◠ .
v1.27 Released!
Change logs:
1, Two more events are supported: onshown and onhidden.
See the Dialog events section in Example Page for details.
v1.26 Released!
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!
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
Change logs:
1, Draggable dialog.
See http://nakupanda.github.io/bootstrap3-dialog/#dialog-draggable
2, AMD Support.
See #14
v1.23 released
Change logs:
Fixed a bug that caused by incorrect content generating order.