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
The text was updated successfully, but these errors were encountered:
MichaelWeb
changed the title
"Current Color" text string is ignored ( wpColorPickerL10n.current ). Data attribute is missing.
"Current Color" string is ignored ( wpColorPickerL10n.current ). Data attribute is missing.
Apr 4, 2016
https://github.com/23r9i0/wp-color-picker-alpha/blob/master/src/wp-color-picker-alpha.js#L62
To fix this issue replace :
self.toggler = $( _before ).insertBefore( el ).css( { backgroundColor : self.initialValue } ).attr( 'title', wpColorPickerL10n.pick ).data( 'current', wpColorPickerL10n.current );
with:
self.toggler = $( _before ).insertBefore( el ).css( { backgroundColor: self.initialValue } ).attr( 'title', wpColorPickerL10n.pick ).attr( 'data-current', wpColorPickerL10n.current );
The text was updated successfully, but these errors were encountered: