You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I use color picker alpha script in customizer together with twentynineteen theme, it causing js bug.
I found that the theme has hue color option:
$wp_customize->add_control(
new WP_Customize_Color_Control(
$wp_customize,
'primary_color_hue',
array(
'description' => __( 'Apply a custom color for buttons, links, featured images, etc.', 'twentynineteen' ),
'section' => 'colors',
'mode' => 'hue',
)
)
);
http://prntscr.com/mvqlq4
and It seem bug when mode is hue(it works without 'mode' =>'hue')
// Create a color picker which only allows adjustments to the hue.
if ( self.options.type === 'hue' ) {
return self._createHueOnly();
}
the bug come when return self._createHueOnly();
Please check,
Thank you!
The text was updated successfully, but these errors were encountered:
kallookoo
transferred this issue from kallookoo/wp-color-picker-alpha-plugin
Mar 10, 2019
When I use color picker alpha script in customizer together with twentynineteen theme, it causing js bug.
I found that the theme has hue color option:
http://prntscr.com/mvqlq4
and It seem bug when mode is hue(it works without 'mode' =>'hue')
// Create a color picker which only allows adjustments to the hue.
if ( self.options.type === 'hue' ) {
return self._createHueOnly();
the bug come when return self._createHueOnly();
Please check,
Thank you!
The text was updated successfully, but these errors were encountered: