Skip to content

Commit

Permalink
fix js error in color palettes preview fixes #132
Browse files Browse the repository at this point in the history
  • Loading branch information
rramo012 committed Nov 5, 2019
1 parent ac3d5d8 commit accf72d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ user guide for more information.

### 2.1.12 ###
* Bug fix: `mce_external_plugins` returning incorrect values. [#129](https://github.com/BoldGrid/boldgrid-theme-framework/issues/129)
* Bug fix: WP 5.3 - Color palette preview fails with js error. [#132](https://github.com/BoldGrid/boldgrid-theme-framework/issues/132)

### 2.1.11 ###
* Bug fix: Ensure that the site header is correctly output when settings are updated in customizer. [#127](https://github.com/BoldGrid/boldgrid-theme-framework/issues/127)
Expand Down
2 changes: 1 addition & 1 deletion src/assets/js/customizer/customizer.js
Original file line number Diff line number Diff line change
Expand Up @@ -543,7 +543,7 @@ BOLDGRID.Customizer.Util.getInitialPalettes = function( option ) {
value.bind( function( to ) {
var palettes, colors;

palettes = parent.$( '.colors-wrapper' );
palettes = parent.jQuery( '.colors-wrapper' );
colors = BOLDGRID.Customizer.Util.getInitialPalettes( to );

// Update any palettes on open colorpicker instances.
Expand Down

0 comments on commit accf72d

Please sign in to comment.