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
Version 1.8.0
Downloaded locally and provided via Wro4J
The palette stacks the colors on top of eachother. After inspecting the palette I could see that the spans for the palette was nested into one another. See attached images
I unmified the source code and found that a </span> is missing from function paletteTemplate(p, color, className, opts) (row 119).
After modifying that row like this: html.push('<span title="' + formattedString + '" data-color="' + tiny.toRgbString() + '" class="' + c + '"><span class="sp-thumb-inner" style="' + swatchStyle + ';" /></span></span>');
The desired output was obtained.
``
The text was updated successfully, but these errors were encountered:
Version 1.8.0
Downloaded locally and provided via Wro4J
The palette stacks the colors on top of eachother. After inspecting the palette I could see that the spans for the palette was nested into one another. See attached images
I unmified the source code and found that a
</span>
is missing fromfunction paletteTemplate(p, color, className, opts)
(row 119).After modifying that row like this:
html.push('<span title="' + formattedString + '" data-color="' + tiny.toRgbString() + '" class="' + c + '"><span class="sp-thumb-inner" style="' + swatchStyle + ';" /></span></span>');
The desired output was obtained.
``
The text was updated successfully, but these errors were encountered: