Skip to content

Commit

Permalink
Removes :first selector
Browse files Browse the repository at this point in the history
  • Loading branch information
tiesont committed Nov 5, 2019
1 parent ecec04f commit d5105fb
Show file tree
Hide file tree
Showing 10 changed files with 637 additions and 2,752 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
## 5.3.2 (Latest Release)
## 5.3.4 (Latest Release)

- Removes `':first'` selector from default button binding

### 5.3.3

- Fixes incorrect value validation for the `step` option when setting `inputType` to `number` for a prompt.

### 5.3.2

- Adds Georgian (ka) locale.

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ 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).

## 5.3.3 (Latest Release)
## 5.3.4 (Latest Release)

- Fixes incorrect value validation for the `step` option when setting `inputType` to `number` for a prompt.
- Removes `':first'` selector from default button binding

For a full list of releases and changes please see [the changelog](https://github.com/makeusabrew/bootbox/blob/master/CHANGELOG.md).

Expand Down
4 changes: 2 additions & 2 deletions bootbox.all.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*! @preserve
* bootbox.js
* version: 5.3.3
* version: 5.3.4
* author: Nick Payne <nick@kurai.co.uk>
* license: MIT
* http://bootboxjs.com/
Expand Down Expand Up @@ -597,7 +597,7 @@
});

dialog.one('shown.bs.modal', function () {
dialog.find('.bootbox-accept:first').trigger('focus');
dialog.find('.bootbox-accept').first().trigger('focus');
});

// Bootbox event listeners; used to decouple some
Expand Down
4 changes: 2 additions & 2 deletions bootbox.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*! @preserve
* bootbox.js
* version: 5.3.3
* version: 5.3.4
* author: Nick Payne <nick@kurai.co.uk>
* license: MIT
* http://bootboxjs.com/
Expand Down Expand Up @@ -396,7 +396,7 @@
});

dialog.one('shown.bs.modal', function () {
dialog.find('.bootbox-accept:first').trigger('focus');
dialog.find('.bootbox-accept').first().trigger('focus');
});

// Bootbox event listeners; used to decouple some
Expand Down
4 changes: 2 additions & 2 deletions dist/bootbox.all.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/bootbox.locales.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions dist/bootbox.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion header.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* bootbox.js 5.3.3
* bootbox.js 5.3.4
*
* http://bootboxjs.com/license.txt
*/
Loading

0 comments on commit d5105fb

Please sign in to comment.