Skip to content

Commit

Permalink
Upgrade to release v1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kartik-v committed Feb 1, 2015
1 parent 0da8245 commit cbab8a3
Show file tree
Hide file tree
Showing 8 changed files with 174 additions and 154 deletions.
8 changes: 6 additions & 2 deletions CHANGE.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
version 1.3.1
version 1.4.0
=============
**Date:** 28-Nov-2014
**Date:** 01-Feb-2015

1. Updated trigger of afterChange event
2. Set composer minimum stability to stable.
3. (enh #10): Enhance ability to use checkbox or radio as the first dependent parent.
4. (enh #14): Code cleanup and restructure for various JS lint changes (using JSHint Code cleanup library).
5. (enh #15): Implement reusable constructor for extending plugin if needed.
6. (enh #16): Enhance Select2 dropdowns to show loading indicator.

version 1.3.0
=============
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ A multi level dependent dropdown JQuery plugin that allows nested dependencies.
select inputs, whose options are derived based on value selected in another input/or a group of inputs. It works both
with normal select options and select with optgroups as well.

> NOTE: The latest version of the plugin v1.3.1 has been released. Refer the [CHANGE LOG](https://github.com/kartik-v/dependent-dropdown/blob/master/CHANGE.md) for details.
> NOTE: The latest version of the plugin v1.4.0 has been released. Refer the [CHANGE LOG](https://github.com/kartik-v/dependent-dropdown/blob/master/CHANGE.md) for details.
## Features

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": "dependent-dropdown",
"version": "1.3.1",
"version": "1.4.0",
"homepage": "https://github.com/kartik-v/dependent-dropdown",
"authors": [
"Kartik Visweswaran <[email protected]>"
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"homepage": "http://www.krajee.com/"
}
],
"minimum-stability": "stable",
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"kartik\\plugins\\depdrop\\": ""
Expand Down
11 changes: 7 additions & 4 deletions css/dependent-dropdown.css
Original file line number Diff line number Diff line change
@@ -1,18 +1,21 @@
/*!
* @copyright Copyright &copy; Kartik Visweswaran, Krajee.com, 2014
* @version 1.3.1
* @version 1.4.0
*
* Styling for the dependent-dropdown JQuery plugin.
*
* For more JQuery plugins visit http://plugins.krajee.com
* For more Yii related demos visit http://demos.krajee.com
*/

.kv-loading {
.kv-loading, .select2-container.kv-loading .select2-chosen {
background-image: url('../img/loading.gif');
background-position: right 30px center;
background-repeat: no-repeat;
z-index: 15000;
cursor: wait;
opacity: 0.6;
}

.select2-container.kv-loading .select2-chosen {
background-position: right center;
margin-right: 15px!important;
}
8 changes: 4 additions & 4 deletions css/dependent-dropdown.min.css
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
/*!
* @copyright Copyright &copy; Kartik Visweswaran, Krajee.com, 2014
* @version 1.3.1
*
* Styling for the dependent-dropdown JQuery plugin.
* @version 1.4.0
*
* Styling for the dependent-dropdown JQuery plugin.
*
* For more JQuery plugins visit http://plugins.krajee.com
* For more Yii related demos visit http://demos.krajee.com
*/ .kv-loading{background-image:url('../img/loading.gif');background-position:right 30px center;background-repeat:no-repeat;z-index:15000;cursor:wait;opacity:.6}
*/.kv-loading,.select2-container.kv-loading .select2-chosen{background-image:url(../img/loading.gif);background-position:right 30px center;background-repeat:no-repeat;cursor:wait;opacity:.6}.select2-container.kv-loading .select2-chosen{background-position:right center;margin-right:15px!important}
Loading

0 comments on commit cbab8a3

Please sign in to comment.