-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
15 changed files
with
126 additions
and
130 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
(The MIT License) | ||
|
||
Copyright (C) 2011-2023 by Nick Payne <[email protected]> | ||
Copyright (C) 2011-2024 by Nick Payne <[email protected]> | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,12 +3,6 @@ | |
Please see http://bootboxjs.com for full usage instructions, or head over to http://paynedigital.com/bootbox for | ||
the original writeup about the project. | ||
|
||
## Contact | ||
|
||
[![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/makeusabrew/bootbox?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge) | ||
|
||
The easiest thing is to [find me on twitter @makeusabrew](http://twitter.com/makeusabrew). | ||
|
||
## Contributing | ||
|
||
Please see the [CONTRIBUTING](https://github.com/bootboxjs/bootbox/blob/master/CONTRIBUTING.md) file for guidelines. | ||
|
@@ -42,27 +36,21 @@ Bootbox **3.3.0** is the *last* release to support Bootstrap 2.2.x. | |
|
||
Much more dependency information can be found [on the Bootbox website](http://bootboxjs.com/getting-started.html#bootbox-dependencies). | ||
|
||
## 6.0.0 (Latest Release) | ||
## 6.0.1 (Latest Release) | ||
|
||
- Removes various IE polyfills | ||
- Replaces `var` with `let` | ||
- JSDoc cleanup | ||
- Adds code to handle cases when click starts on the modal body and ends on the backdrop and `backdrop` is set to `true` | ||
- `bootbox.locale.js` and `bootbox.all.js` are now generated files and will be found in the `/dist` directory | ||
- Simplify locale file structure | ||
- Changed a few locale identifiers to match IANA specifications: | ||
- `bg_BG` -> `bg-BG` | ||
- `pt-br` -> `pt-BR` | ||
- `zh_CN` -> `zh-CN` | ||
- `zh_TW` -> `zh-CW` | ||
- Updates prompt callback to return false from callback if `inputType` is 'checkbox', `required` option is `true`, and no checkbox has been checked | ||
- Updates unit tests | ||
- Adds tests for required option | ||
- Cleanup up pattern tests | ||
- Adds HTML output runner | ||
|
||
For a full list of releases and changes please see [the changelog](https://github.com/bootboxjs/bootbox/blob/master/CHANGELOG.md). | ||
|
||
## License | ||
|
||
(The MIT License) | ||
|
||
Copyright (C) 2011-2023 by Nick Payne <[email protected]> | ||
Copyright (C) 2011-2024 by Nick Payne <[email protected]> | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/*! @preserve | ||
* bootbox.js | ||
* version: 6.0.0 | ||
* version: 6.0.1 | ||
* author: Nick Payne <[email protected]> | ||
* license: MIT | ||
* http://bootboxjs.com/ | ||
|
@@ -22,7 +22,7 @@ | |
|
||
let exports = {}; | ||
|
||
let VERSION = '6.0.0'; | ||
let VERSION = '6.0.1'; | ||
exports.VERSION = VERSION; | ||
|
||
let locales = { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/*! @preserve | ||
* bootbox.js | ||
* version: 6.0.0 | ||
* version: 6.0.1 | ||
* author: Nick Payne <[email protected]> | ||
* license: MIT | ||
* http://bootboxjs.com/ | ||
|
@@ -22,7 +22,7 @@ | |
|
||
let exports = {}; | ||
|
||
let VERSION = '6.0.0'; | ||
let VERSION = '6.0.1'; | ||
exports.VERSION = VERSION; | ||
|
||
let locales = { | ||
|
@@ -1216,7 +1216,7 @@ | |
|
||
/*! @preserve | ||
* bootbox.locales.js | ||
* version: 6.0.0 | ||
* version: 6.0.1 | ||
* author: Nick Payne <[email protected]> | ||
* license: MIT | ||
* http://bootboxjs.com/ | ||
|
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/*! @preserve | ||
* bootbox.js | ||
* version: 6.0.0 | ||
* version: 6.0.1 | ||
* author: Nick Payne <[email protected]> | ||
* license: MIT | ||
* http://bootboxjs.com/ | ||
|
@@ -22,7 +22,7 @@ | |
|
||
let exports = {}; | ||
|
||
let VERSION = '6.0.0'; | ||
let VERSION = '6.0.1'; | ||
exports.VERSION = VERSION; | ||
|
||
let locales = { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/*! @preserve | ||
* bootbox.locales.js | ||
* version: 6.0.0 | ||
* version: 6.0.1 | ||
* author: Nick Payne <[email protected]> | ||
* license: MIT | ||
* http://bootboxjs.com/ | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/** | ||
* Bootbox.js — alert, confirm, prompt, and flexible dialogs for the Bootstrap framework | ||
* @version: 6.0.0 | ||
* @version: 6.0.1 | ||
* @project: https://github.com/bootboxjs/bootbox | ||
* @license: MIT http://bootboxjs.com/license.txt | ||
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/*! @preserve | ||
* bootbox.locales.js | ||
* version: 6.0.0 | ||
* version: 6.0.1 | ||
* author: Nick Payne <[email protected]> | ||
* license: MIT | ||
* http://bootboxjs.com/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/*! @preserve | ||
* bootbox.js | ||
* version: 6.0.0 | ||
* version: 6.0.1 | ||
* author: Nick Payne <[email protected]> | ||
* license: MIT | ||
* http://bootboxjs.com/ | ||
|
Oops, something went wrong.