Skip to content

Commit 55455c8

Browse files
committed
version bump to v3.1.1
1 parent 0527034 commit 55455c8

11 files changed

+21
-18
lines changed

README.md

Lines changed: 3 additions & 3 deletions
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.1.0
4+
v3.1.1
55

66
A multipurpose plugin for alert, confirm & dialog, with Super powers.
77

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

2020
via CDN:
21-
`<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/jquery-confirm/3.1.0/jquery-confirm.min.css">`
22-
`<script src="//cdnjs.cloudflare.com/ajax/libs/jquery-confirm/3.1.0/jquery-confirm.min.js"></script>`
21+
`<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/jquery-confirm/3.1.1/jquery-confirm.min.css">`
22+
`<script src="//cdnjs.cloudflare.com/ajax/libs/jquery-confirm/3.1.1/jquery-confirm.min.js"></script>`
2323

2424
via Bower:
2525
`$ bower install craftpip/jquery-confirm`

animations.html

Lines changed: 1 addition & 1 deletion
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.1.0';
63+
var version = '3.1.1';
6464
</script>
6565
<!-- Add the minified version of files from the /dist/ folder. -->
6666
<!-- jquery-confirm files -->

bower.json

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

css/jquery-confirm.css

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

css/jquery-confirm.less

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

dist/jquery-confirm.min.css

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

dist/jquery-confirm.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

index.html

Lines changed: 5 additions & 5 deletions
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.1.0';
63+
var version = '3.1.1';
6464
</script>
6565
<!-- Add the minified version of files from the /dist/ folder. -->
6666
<!-- jquery-confirm files -->
@@ -216,7 +216,7 @@
216216
<div class="col-md-12">
217217
<div style="height: 15px;"></div>
218218
<a href="https://github.com/craftpip/jquery-confirm/releases/download/v3.0.3/jquery-confirm-v3.0.3.zip"
219-
class="btn btn-lg">Download v3.1.0
219+
class="btn btn-lg">Download v3.1.1
220220
</a>
221221
<a href="https://github.com/craftpip/jquery-confirm"
222222
class="btn btn-lg"><i class="fa fa-github"></i> View on GitHub
@@ -883,7 +883,7 @@ <h2>Features</h2>
883883
</section>
884884

885885
<section>
886-
<h2>Whats new <span style="color: #aaa">in v3.1.0</span></h2>
886+
<h2>Whats new <span style="color: #aaa">in v3.1.1</span></h2>
887887
<ul>
888888
<li>Support for bootstrap v4</li>
889889
<li>Draggable dialogs</li>
@@ -913,8 +913,8 @@ <h3 id="installation">
913913

914914
<p>
915915
<strong>via CDN:</strong>
916-
<pre class="prettyprint"><code class="html">&lt;link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/jquery-confirm/3.1.0/jquery-confirm.min.css"&gt;
917-
&lt;script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-confirm/3.1.0/jquery-confirm.min.js"&gt;&lt;/script&gt;</code></pre>
916+
<pre class="prettyprint"><code class="html">&lt;link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/jquery-confirm/3.1.1/jquery-confirm.min.css"&gt;
917+
&lt;script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-confirm/3.1.1/jquery-confirm.min.js"&gt;&lt;/script&gt;</code></pre>
918918
</p>
919919

920920
<p>

js/jquery-confirm.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* jquery-confirm v3.1.0 (http://craftpip.github.io/jquery-confirm/)
2+
* jquery-confirm v3.1.1 (http://craftpip.github.io/jquery-confirm/)
33
* Author: Boniface Pereira
44
* Website: www.craftpip.com
55
* Contact: [email protected]

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jquery-confirm",
3-
"version": "3.1.0",
3+
"version": "3.1.1",
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

Lines changed: 4 additions & 1 deletion
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.1.0';
63+
var version = '3.1.1';
6464
</script>
6565
<!-- Add the minified version of files from the /dist/ folder. -->
6666
<!-- jquery-confirm files -->
@@ -112,6 +112,9 @@
112112
<span class="caret"></span>
113113
</a>
114114
<ul class="dropdown-menu">
115+
<li>
116+
<a href="http://craftpip.github.io/jquery-confirm/v3.0.3">v3.0.3</a>
117+
</li>
115118
<li>
116119
<a href="http://craftpip.github.io/jquery-confirm/v3.0.3">v3.0.3</a>
117120
</li>

0 commit comments

Comments
 (0)