Skip to content

Commit

Permalink
version bump to v3.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
craftpip committed Feb 19, 2017
1 parent 9e7d4f4 commit 9aa8a1e
Show file tree
Hide file tree
Showing 11 changed files with 49 additions and 27 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
### ![jquery-confirm](https://raw.githubusercontent.com/craftpip/jquery-confirm/master/jquery-confirm.png "jquery-confirm")
*alerts, confirms and dialogs in* ***one.***

v3.0.3
v3.1.0

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

Expand Down
5 changes: 4 additions & 1 deletion animations.html
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
<link rel="stylesheet"
href="demo/demo.css">
<script>
var version = '3.0.3';
var version = '3.1.0';
</script>
<!-- Add the minified version of files from the /dist/ folder. -->
<!-- jquery-confirm files -->
Expand Down Expand Up @@ -112,6 +112,9 @@
<span class="caret"></span>
</a>
<ul class="dropdown-menu">
<li>
<a href="http://craftpip.github.io/jquery-confirm/v3.0.3">v3.0.3</a>
</li>
<li>
<a href="http://craftpip.github.io/jquery-confirm/v3.0.1">v3.0.1</a>
</li>
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jquery-confirm2",
"version": "3.0.3",
"version": "3.1.0",
"homepage": "https://github.com/craftpip/jquery-confirm",
"authors": [
"boniface pereira <[email protected]>"
Expand Down
4 changes: 2 additions & 2 deletions css/jquery-confirm.css
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
/*!
* jquery-confirm v3.0.3 (http://craftpip.github.io/jquery-confirm/)
* jquery-confirm v3.1.0 (http://craftpip.github.io/jquery-confirm/)
* Author: boniface pereira
* Website: www.craftpip.com
* Contact: [email protected]
*
* Copyright 2013-2016 jquery-confirm
* Copyright 2013-2017 jquery-confirm
* Licensed under MIT (https://github.com/craftpip/jquery-confirm/blob/master/LICENSE)
*/
@-webkit-keyframes jconfirm-spin {
Expand Down
4 changes: 2 additions & 2 deletions css/jquery-confirm.less
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
/*!
* jquery-confirm v3.0.3 (http://craftpip.github.io/jquery-confirm/)
* jquery-confirm v3.1.0 (http://craftpip.github.io/jquery-confirm/)
* Author: boniface pereira
* Website: www.craftpip.com
* Contact: [email protected]
*
* Copyright 2013-2016 jquery-confirm
* Copyright 2013-2017 jquery-confirm
* Licensed under MIT (https://github.com/craftpip/jquery-confirm/blob/master/LICENSE)
*/
@blue: #3498db;
Expand Down
6 changes: 3 additions & 3 deletions dist/jquery-confirm.min.css

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions dist/jquery-confirm.min.js

Large diffs are not rendered by default.

36 changes: 26 additions & 10 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
<link rel="stylesheet"
href="demo/demo.css">
<script>
var version = '3.0.3';
var version = '3.1.0';
</script>
<!-- Add the minified version of files from the /dist/ folder. -->
<!-- jquery-confirm files -->
Expand Down Expand Up @@ -114,6 +114,9 @@
<span class="caret"></span>
</a>
<ul class="dropdown-menu">
<li>
<a href="http://craftpip.github.io/jquery-confirm/v3.0.3">v3.0.3</a>
</li>
<li>
<a href="http://craftpip.github.io/jquery-confirm/v3.0.1">v3.0.1</a>
</li>
Expand Down Expand Up @@ -213,7 +216,7 @@
<div class="col-md-12">
<div style="height: 15px;"></div>
<a href="https://github.com/craftpip/jquery-confirm/releases/download/v3.0.3/jquery-confirm-v3.0.3.zip"
class="btn btn-lg">Download v3.0.3
class="btn btn-lg">Download v3.1.0
</a>
<a href="https://github.com/craftpip/jquery-confirm"
class="btn btn-lg"><i class="fa fa-github"></i> View on GitHub
Expand Down Expand Up @@ -565,6 +568,12 @@ <h2>Features</h2>
<p class="text-success">Clean animations</p>
</div>
</div>
<div class="row">
<div class="col-md-3">
<button class="btn btn-primary btn-block example-p-7-2">Draggable</button>
<p class="text-success">Drag me around</p>
</div>
</div>
<script type="text/javascript">
// alert
$('.example-p-1').on('click', function () {
Expand Down Expand Up @@ -861,17 +870,24 @@ <h2>Features</h2>
},
});
});

$('.example-p-7-2').on('click', function () {
$.alert({
title: 'A draggable dialog',
content: 'This dialog is draggable, use the title to drag it around. It wont touch the screen borders',
type: 'blue',
draggable: true,
});
})
</script>
</section>

<section>
<h2>Whats new <span style="color: #aaa">in v3.0.3</span></h2>
<h2>Whats new <span style="color: #aaa">in v3.1.0</span></h2>
<ul>
<li>Support for namespaced bootstrap classes</li>
<li>Jconfirm can be used without bootstrap</li>
<li>Added type for modals (green/success, red/failure, orange/warning, etc)</li>
<li>Added setType method</li>
<li>bug fixes</li>
<li>Support for bootstrap v4</li>
<li>Draggable dialogs</li>
<li>Added options animateScrollToElement, alignMiddle, offsetTop, drawWindowGap and more</li>
</ul>
</section>

Expand All @@ -897,8 +913,8 @@ <h3 id="installation">

<p>
<strong>via CDN:</strong>
<pre class="prettyprint"><code class="html">&lt;link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/jquery-confirm/3.0.3/jquery-confirm.min.css"&gt;
&lt;script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-confirm/3.0.3/jquery-confirm.min.js"&gt;&lt;/script&gt;</code></pre>
<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;
&lt;script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-confirm/3.1.0/jquery-confirm.min.js"&gt;&lt;/script&gt;</code></pre>
</p>

<p>
Expand Down
4 changes: 2 additions & 2 deletions js/jquery-confirm.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
/*!
* jquery-confirm v3.0.3 (http://craftpip.github.io/jquery-confirm/)
* jquery-confirm v3.1.0 (http://craftpip.github.io/jquery-confirm/)
* Author: Boniface Pereira
* Website: www.craftpip.com
* Contact: [email protected]
*
* Copyright 2013-2016 jquery-confirm
* Copyright 2013-2017 jquery-confirm
* Licensed under MIT (https://github.com/craftpip/jquery-confirm/blob/master/LICENSE)
*/

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jquery-confirm",
"version": "3.0.3",
"version": "3.1.0",
"title": "jquery-confirm.js | A multipurpose alert and confirm plugin",
"description": "A jQuery plugin that provides great set of features like, Auto-close, Ajax-loading, background-dismiss, themes and more.",
"homepage": "http://craftpip.github.io/jquery-confirm/",
Expand Down
5 changes: 4 additions & 1 deletion themes.html
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
<link rel="stylesheet"
href="demo/demo.css">
<script>
var version = '3.0.3';
var version = '3.1.0';
</script>
<!-- Add the minified version of files from the /dist/ folder. -->
<!-- jquery-confirm files -->
Expand Down Expand Up @@ -112,6 +112,9 @@
<span class="caret"></span>
</a>
<ul class="dropdown-menu">
<li>
<a href="http://craftpip.github.io/jquery-confirm/v3.0.3">v3.0.3</a>
</li>
<li>
<a href="http://craftpip.github.io/jquery-confirm/v3.0.1">v3.0.1</a>
</li>
Expand Down

0 comments on commit 9aa8a1e

Please sign in to comment.