Skip to content

Commit 701c107

Browse files
committed
Version 2.4.1
1 parent 67e4a11 commit 701c107

File tree

5 files changed

+30
-21
lines changed

5 files changed

+30
-21
lines changed

README.md

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,20 @@
55

66
Bootstrap plugin for on-place confirm boxes using Popover.
77

8-
98
## Documentation
109

1110
[bootstrap-confirmation.js.org](http://bootstrap-confirmation.js.org)
1211

12+
## Installation
13+
14+
#### Bootstrap 4
15+
16+
```
17+
npm install bootstrap-confirmation2
18+
```
1319

14-
## Changes from original one
20+
#### Bootstrap 3
1521

16-
- Bootstrap 3 compatible (3.2 minimum)
17-
- Fix double event fires
18-
- Automatic handle of links (without need of custom callback)
19-
- Allow to define custom buttons
22+
```
23+
npm install bootstrap-confirmation2@2.x.x
24+
```

bootstrap-confirmation.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
this.init(element, options);
2424
};
2525

26-
Confirmation.VERSION = '2.4.0';
26+
Confirmation.VERSION = '2.4.1';
2727

2828
/**
2929
* Map between keyboard events "keyCode|which" and "key"

bootstrap-confirmation.min.js

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bower.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
{
22
"name": "bootstrap-confirmation2",
3-
"homepage": "http://mistic100.github.io/Bootstrap-Confirmation",
3+
"homepage": "http://bootstrap-confirmation.js.org",
44
"description": "Bootstrap plugin for on-place confirm boxes using Popover",
5+
"license": "Apache-2.0",
56
"authors": [
67
{
78
"name": "Nimit Suwannagate",
@@ -20,9 +21,8 @@
2021
"popup"
2122
],
2223
"dependencies" : {
23-
"bootstrap": ">=3.2.0"
24+
"bootstrap": ">=3.2.0 <4"
2425
},
25-
"license": "Apache-2.0",
2626
"repository": {
2727
"type": "git",
2828
"url": "git://github.com/mistic100/Bootstrap-Confirmation.git"

package.json

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
{
22
"name": "bootstrap-confirmation2",
3-
"version": "2.4.0",
4-
"homepage": "http://mistic100.github.io/Bootstrap-Confirmation",
3+
"version": "2.4.1",
4+
"homepage": "http://bootstrap-confirmation.js.org",
55
"description": "Bootstrap plugin for on-place confirm boxes using Popover",
6+
"license": "Apache-2.0",
67
"authors": [
78
{
89
"name": "Nimit Suwannagate",
@@ -14,6 +15,15 @@
1415
"homepage": "http://www.strangeplanet.fr"
1516
}
1617
],
18+
"main": "bootstrap-confirmation.js",
19+
"keywords": [
20+
"bootstrap",
21+
"confirmation",
22+
"popup"
23+
],
24+
"peerDependencies": {
25+
"bootstrap": ">=3.2.0 <4"
26+
},
1727
"devDependencies": {
1828
"grunt": "^1.0.0",
1929
"grunt-contrib-connect": "^1.0.0",
@@ -24,12 +34,6 @@
2434
"grunt-replace": "^1.0.1",
2535
"jit-grunt": "^0.10.0"
2636
},
27-
"keywords": [
28-
"bootstrap",
29-
"confirmation",
30-
"popup"
31-
],
32-
"license": "Apache-2.0",
3337
"repository": {
3438
"type": "git",
3539
"url": "git://github.com/mistic100/Bootstrap-Confirmation.git"

0 commit comments

Comments
 (0)