Skip to content

Commit d5105fb

Browse files
committed
Removes :first selector
1 parent ecec04f commit d5105fb

10 files changed

+637
-2752
lines changed

CHANGELOG.md

+9-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
1-
## 5.3.2 (Latest Release)
1+
## 5.3.4 (Latest Release)
2+
3+
- Removes `':first'` selector from default button binding
4+
5+
### 5.3.3
6+
7+
- Fixes incorrect value validation for the `step` option when setting `inputType` to `number` for a prompt.
8+
9+
### 5.3.2
210

311
- Adds Georgian (ka) locale.
412

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ Bootbox **3.3.0** is the *last* release to support Bootstrap 2.2.x.
3535

3636
Much more dependency information can be found [on the Bootbox website](http://bootboxjs.com/getting-started.html#bootbox-dependencies).
3737

38-
## 5.3.3 (Latest Release)
38+
## 5.3.4 (Latest Release)
3939

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

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

bootbox.all.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*! @preserve
22
* bootbox.js
3-
* version: 5.3.3
3+
* version: 5.3.4
44
* author: Nick Payne <nick@kurai.co.uk>
55
* license: MIT
66
* http://bootboxjs.com/
@@ -597,7 +597,7 @@
597597
});
598598

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

603603
// Bootbox event listeners; used to decouple some

bootbox.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*! @preserve
22
* bootbox.js
3-
* version: 5.3.3
3+
* version: 5.3.4
44
* author: Nick Payne <nick@kurai.co.uk>
55
* license: MIT
66
* http://bootboxjs.com/
@@ -396,7 +396,7 @@
396396
});
397397

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

402402
// Bootbox event listeners; used to decouple some

dist/bootbox.all.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/bootbox.locales.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/bootbox.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

header.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* bootbox.js 5.3.3
2+
* bootbox.js 5.3.4
33
*
44
* http://bootboxjs.com/license.txt
55
*/

0 commit comments

Comments
 (0)