Skip to content

Commit

Permalink
bump to v3.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
craftpip committed Aug 10, 2017
1 parent 5bf22bb commit da21073
Show file tree
Hide file tree
Showing 11 changed files with 58 additions and 26 deletions.
19 changes: 16 additions & 3 deletions 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.2.3
v3.3.0

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

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

via CDN:
`<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/jquery-confirm/3.2.3/jquery-confirm.min.css">`
`<script src="//cdnjs.cloudflare.com/ajax/libs/jquery-confirm/3.2.3/jquery-confirm.min.js"></script>`
`<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/jquery-confirm/3.3.0/jquery-confirm.min.css">`
`<script src="//cdnjs.cloudflare.com/ajax/libs/jquery-confirm/3.3.0/jquery-confirm.min.js"></script>`

via Bower:
`$ bower install craftpip/jquery-confirm`
Expand Down Expand Up @@ -71,6 +71,19 @@ Checkout the [documentation](http://craftpip.github.io/jquery-confirm) for furth

## Version changes

(new in 3.3.0)
* Moved overflow scroll inside modal [#286](https://github.com/craftpip/jquery-confirm/issues/2860)
* Improved draggable
* Added 'animateFromElement' method
* Added 'smoothScroll' option
* Added 'hilight' option
* Added 'showLoading','hideLoading' option
* Accept jquery dom element in content [#313](https://github.com/craftpip/jquery-confirm/issues/313)
* Updated docs
* 'setDialogCenter' method deprecated, dialog centered with CSS tables
* 'alignMiddle' method deprecated
* fixes [#255](https://github.com/craftpip/jquery-confirm/issues/255) [#307](https://github.com/craftpip/jquery-confirm/issues/307) [290](https://github.com/craftpip/jquery-confirm/issues/290)

(new in 3.2.3)
* Added lazyOpen option
* Added button properties isHidden and isDisabled
Expand Down
2 changes: 1 addition & 1 deletion animations.html
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
<link rel="stylesheet"
href="demo/demo.css">
<script>
var version = '3.2.3';
var version = '3.3.0';
</script>
<!-- Add the minified version of files from the /dist/ folder. -->
<!-- jquery-confirm files -->
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.2.3",
"version": "3.3.0",
"homepage": "https://github.com/craftpip/jquery-confirm",
"authors": [
"boniface pereira <[email protected]>"
Expand Down
2 changes: 1 addition & 1 deletion css/jquery-confirm.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* jquery-confirm v3.2.3 (http://craftpip.github.io/jquery-confirm/)
* jquery-confirm v3.3.0 (http://craftpip.github.io/jquery-confirm/)
* Author: boniface pereira
* Website: www.craftpip.com
* Contact: [email protected]
Expand Down
2 changes: 1 addition & 1 deletion css/jquery-confirm.less
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* jquery-confirm v3.2.3 (http://craftpip.github.io/jquery-confirm/)
* jquery-confirm v3.3.0 (http://craftpip.github.io/jquery-confirm/)
* Author: boniface pereira
* Website: www.craftpip.com
* Contact: [email protected]
Expand Down
4 changes: 2 additions & 2 deletions dist/jquery-confirm.min.css

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/jquery-confirm.min.js

Large diffs are not rendered by default.

43 changes: 31 additions & 12 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
<link rel="stylesheet"
href="demo/demo.css">
<script>
var version = '3.2.3';
var version = '3.3.0';
</script>
<!-- Add the minified version of files from the /dist/ folder. -->
<!-- jquery-confirm files -->
Expand Down Expand Up @@ -222,8 +222,8 @@
<div class="row download-btns">
<div class="col-md-12">
<div style="height: 15px;"></div>
<a href="https://github.com/craftpip/jquery-confirm/releases/download/v3.2.3/jquery-confirm-v3.2.3.zip"
class="btn btn-lg">Download v3.2.3
<a href="https://github.com/craftpip/jquery-confirm/releases/download/v3.3.0/jquery-confirm-v3.3.0.zip"
class="btn btn-lg">Download v3.3.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 @@ -990,12 +990,32 @@ <h2>Themes</h2>
</section>

<section id="whats-new">
<h2>Whats new <span style="color: #aaa">in v3.2.3</span></h2>
<h2>Whats new <span style="color: #aaa">in v3.3.0</span></h2>
<p>
Major changes
</p>
<ul>
<li>Moved overflow scroll inside modal <a target="_empty" href="https://github.com/craftpip/jquery-confirm/issues/286">#286</a></li>
</ul>
<p>
Improvements
</p>
<ul>
<li>'draggable' improved</li>
<li>Added 'animateFromElement' option</li>
<li>Added 'smoothScroll' option</li>
<li>Added 'hilight' option</li>
<li>Added 'showLoading','hideLoading' option</li>
<li>Accept jquery dom element in content <a target="_empty" href="https://github.com/craftpip/jquery-confirm/issues/313">#313</a></li>
<li>Updated docs</li>
<li>Fixes <a target="_empty" href="https://github.com/craftpip/jquery-confirm/issues/255">#255</a> <a target="_empty" href="https://github.com/craftpip/jquery-confirm/issues/307">#307</a> <a target="_empty" href="https://github.com/craftpip/jquery-confirm/issues/290">#290</a></li>
</ul>
<p>
Removals
</p>
<ul>
<li>Added lazyOpen option</li>
<li>Added button properties isHidden and isDisabled</li>
<li>setBoxWidth method added</li>
<li>Bug fixes</li>
<li>'setDialogCenter' method deprecated, dialog centered with CSS tables</li>
<li>'alignMiddle' method deprecated</li>
</ul>
</section>

Expand All @@ -1022,8 +1042,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.2.3/jquery-confirm.min.css"&gt;
&lt;script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-confirm/3.2.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.3.0/jquery-confirm.min.css"&gt;
&lt;script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-confirm/3.3.0/jquery-confirm.min.js"&gt;&lt;/script&gt;</code></pre>
</p>

<p>
Expand Down Expand Up @@ -1098,8 +1118,7 @@ <h4 id="confirm">
$('.example2').on('click', function () {
$.confirm({
title: 'Confirm!',
// content: 'Simple confirm!',
content: $('#whats-new').clone(),
content: 'Simple confirm!',
buttons: {
confirm: function () {
$.alert('Confirmed!');
Expand Down
2 changes: 1 addition & 1 deletion js/jquery-confirm.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* jquery-confirm v3.2.3 (http://craftpip.github.io/jquery-confirm/)
* jquery-confirm v3.3.0 (http://craftpip.github.io/jquery-confirm/)
* Author: Boniface Pereira
* Website: www.craftpip.com
* Contact: [email protected]
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.2.3",
"version": "3.3.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
2 changes: 1 addition & 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.2.3';
var version = '3.3.0';
</script>
<!-- Add the minified version of files from the /dist/ folder. -->
<!-- jquery-confirm files -->
Expand Down

0 comments on commit da21073

Please sign in to comment.