Skip to content

Commit

Permalink
Merge pull request #745 from aristath/develop
Browse files Browse the repository at this point in the history
2.2.3
  • Loading branch information
aristath committed Mar 19, 2016
2 parents 915c05d + 323ede7 commit 9795801
Show file tree
Hide file tree
Showing 17 changed files with 874 additions and 857 deletions.
12 changes: 10 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
**Donate link:** http://kirki.org/
**Requires at least:** 4.4
**Tested up to:** 4.5
**Stable tag:** 2.2.2.1
**Stable tag:** 2.2.3
**License:** GPLv2 or later
**License URI:** http://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -37,9 +37,17 @@ If you want to integrate Kirki in your theme or plugin, please read the instruct

## Changelog ##

### 2.2.3 ###

March 19, 2016

* FIX: Selecting a color inside typography controls was throwing a JS error (typo)
* FIX: CSS alignment for descriptions in toggle controls
* FIX: Default value for letter-spacing setting in typography controls (props @andreg)

### 2.2.2.1 ###

March 17, 2016, dev time: 5 minutes
March 18, 2016, dev time: 5 minutes

* FIX: Backwards-compatibility bugfix

Expand Down
2 changes: 1 addition & 1 deletion assets/css/customizer.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion assets/css/customizer.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion assets/css/customizer.min.css

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions assets/js/controls/typography.js
Original file line number Diff line number Diff line change
Expand Up @@ -200,8 +200,8 @@ wp.customize.controlConstructor['typography'] = wp.customize.Control.extend( {
change: function() {
setTimeout ( function() {
// add the value to the array and set the setting's value
compiled_value[ 'color' ] = picker.val ();
control.setting.set ( compiled_value );
value[ 'color' ] = picker.val ();
control.setting.set ( value );
// refresh the preview
wp.customize.previewer.refresh ();
}, 100 );
Expand Down
4 changes: 2 additions & 2 deletions assets/js/customizer.js
Original file line number Diff line number Diff line change
Expand Up @@ -1427,8 +1427,8 @@ wp.customize.controlConstructor['typography'] = wp.customize.Control.extend( {
change: function() {
setTimeout ( function() {
// add the value to the array and set the setting's value
compiled_value[ 'color' ] = picker.val ();
control.setting.set ( compiled_value );
value[ 'color' ] = picker.val ();
control.setting.set ( value );
// refresh the preview
wp.customize.previewer.refresh ();
}, 100 );
Expand Down
2 changes: 1 addition & 1 deletion assets/js/customizer.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion assets/js/customizer.min.js.map

Large diffs are not rendered by default.

Loading

0 comments on commit 9795801

Please sign in to comment.