Skip to content

Commit 3ec8bbe

Browse files
committed
added payload callback to onClose method
1 parent 7a78b25 commit 3ec8bbe

11 files changed

+21
-21
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
### ![jquery-confirm](https://raw.githubusercontent.com/craftpip/jquery-confirm/master/jquery-confirm.png "jquery-confirm")
22
*alerts, confirms and dialogs in* ***one.***
33

4-
v3.3.1
4+
v3.3.2
55

66
[![Donate](https://img.shields.io/badge/Donate-PayPal-green.svg)](https://www.paypal.me/bonifacepereira)
77

@@ -20,8 +20,8 @@ View Detailed [Documentation & Examples](http://craftpip.github.io/jquery-confir
2020
Download the latest release [here](https://github.com/craftpip/jquery-confirm/archive/master.zip) and use the files within `dist` folder.
2121

2222
via CDN:
23-
`<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/jquery-confirm/3.3.1/jquery-confirm.min.css">`
24-
`<script src="//cdnjs.cloudflare.com/ajax/libs/jquery-confirm/3.3.1/jquery-confirm.min.js"></script>`
23+
`<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/jquery-confirm/3.3.2/jquery-confirm.min.css">`
24+
`<script src="//cdnjs.cloudflare.com/ajax/libs/jquery-confirm/3.3.2/jquery-confirm.min.js"></script>`
2525

2626
via Bower:
2727
`$ bower install craftpip/jquery-confirm`

animations.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
<link rel="stylesheet"
6262
href="demo/demo.css">
6363
<script>
64-
var version = '3.3.1';
64+
var version = '3.3.2';
6565
</script>
6666
<!-- Add the minified version of files from the /dist/ folder. -->
6767
<!-- jquery-confirm files -->

bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jquery-confirm2",
3-
"version": "3.3.1",
3+
"version": "3.3.2",
44
"homepage": "https://github.com/craftpip/jquery-confirm",
55
"authors": [
66
"boniface pereira <[email protected]>"

css/jquery-confirm.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* jquery-confirm v3.3.1 (http://craftpip.github.io/jquery-confirm/)
2+
* jquery-confirm v3.3.2 (http://craftpip.github.io/jquery-confirm/)
33
* Author: boniface pereira
44
* Website: www.craftpip.com
55
* Contact: [email protected]

css/jquery-confirm.less

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* jquery-confirm v3.3.1 (http://craftpip.github.io/jquery-confirm/)
2+
* jquery-confirm v3.3.2 (http://craftpip.github.io/jquery-confirm/)
33
* Author: boniface pereira
44
* Website: www.craftpip.com
55
* Contact: [email protected]

dist/jquery-confirm.min.css

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

dist/jquery-confirm.min.js

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

index.html

+6-6
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
<link rel="stylesheet"
6262
href="demo/demo.css">
6363
<script>
64-
var version = '3.3.1';
64+
var version = '3.3.2';
6565
</script>
6666
<!-- Add the minified version of files from the /dist/ folder. -->
6767
<!-- jquery-confirm files -->
@@ -225,8 +225,8 @@
225225
<div class="row download-btns">
226226
<div class="col-md-12">
227227
<div style="height: 15px;"></div>
228-
<a href="https://github.com/craftpip/jquery-confirm/releases/download/v3.3.1/jquery-confirm-v3.3.1.zip"
229-
class="btn btn-lg">Download v3.3.1
228+
<a href="https://github.com/craftpip/jquery-confirm/releases/download/v3.3.2/jquery-confirm-v3.3.2.zip"
229+
class="btn btn-lg">Download v3.3.2
230230
</a>
231231
<a href="https://github.com/craftpip/jquery-confirm"
232232
class="btn btn-lg"><i class="fa fa-github"></i> View on GitHub
@@ -993,7 +993,7 @@ <h2>Themes</h2>
993993
</section>
994994

995995
<section id="whats-new">
996-
<h2>Whats new <span style="color: #aaa">in v3.3.1</span></h2>
996+
<h2>Whats new <span style="color: #aaa">in v3.3.2</span></h2>
997997
<p>
998998
Major changes
999999
</p>
@@ -1045,8 +1045,8 @@ <h3 id="installation">
10451045

10461046
<p>
10471047
<strong>via CDN:</strong>
1048-
<pre class="prettyprint"><code class="html">&lt;link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/jquery-confirm/3.3.1/jquery-confirm.min.css"&gt;
1049-
&lt;script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-confirm/3.3.1/jquery-confirm.min.js"&gt;&lt;/script&gt;</code></pre>
1048+
<pre class="prettyprint"><code class="html">&lt;link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/jquery-confirm/3.3.2/jquery-confirm.min.css"&gt;
1049+
&lt;script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-confirm/3.3.2/jquery-confirm.min.js"&gt;&lt;/script&gt;</code></pre>
10501050
</p>
10511051

10521052
<p>

js/jquery-confirm.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* jquery-confirm v3.3.1 (http://craftpip.github.io/jquery-confirm/)
2+
* jquery-confirm v3.3.2 (http://craftpip.github.io/jquery-confirm/)
33
* Author: Boniface Pereira
44
* Website: www.craftpip.com
55
* Contact: [email protected]
@@ -1026,11 +1026,11 @@ var jconfirm, Jconfirm;
10261026
_unwatchContent: function () {
10271027
clearInterval(this._timer);
10281028
},
1029-
close: function () {
1029+
close: function (onClosePayload) {
10301030
var that = this;
10311031

10321032
if (typeof this.onClose === 'function')
1033-
this.onClose();
1033+
this.onClose(onClosePayload);
10341034

10351035
this._unwatchContent();
10361036

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jquery-confirm",
3-
"version": "3.3.1",
3+
"version": "3.3.2",
44
"title": "jquery-confirm.js | A multipurpose alert and confirm plugin",
55
"description": "A jQuery plugin that provides great set of features like, Auto-close, Ajax-loading, background-dismiss, themes and more.",
66
"homepage": "http://craftpip.github.io/jquery-confirm/",

themes.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
<link rel="stylesheet"
6161
href="demo/demo.css">
6262
<script>
63-
var version = '3.3.1';
63+
var version = '3.3.2';
6464
</script>
6565
<!-- Add the minified version of files from the /dist/ folder. -->
6666
<!-- jquery-confirm files -->

0 commit comments

Comments
 (0)