ivanvmat / color-picker

:droplet: Flat and simple color-picker library. No dependencies, no jquery.
https://ivanvmat.github.io/color-picker/
MIT License
20 stars 5 forks source link

Option to disable or hide the alpha channel slider #1

Closed H0rn0chse closed 3 years ago

H0rn0chse commented 3 years ago

Hi,

Is it possible that you might add an option to the configuration to disable or preferably hide the alpha channel slider? Currently I'm hiding it in a hard coded css way: https://github.com/H0rn0chse/GifBuilder/blob/main/styles/options.css#L50

Thanks in advance.

ivanvmat commented 3 years ago

Hi,

I added use_alpha option to the configuration. const picker = new ColorPickerControl({ container: document.body, use_alpha: false }); In the next version I will add the ability to change this parameter dynamically.

H0rn0chse commented 3 years ago

Thank you very much I've tested the new version and it works perfectly for me!