Do not close the color piker by clicking on an empty area of the color picker element
onet4 opened this issue · 1 comments
onet4 commented
It would be great if the color picker element does not get closed when an empty area is clicked.
The demo shows an example of embedded RGB bars. When a user tries to slide the bar, often the picker gets closed by clicking on the empty space between the bars.
A workaround is to insert the following line in the buildCallback
callback. However, this should be done natively.
$elm.on( 'mousedown', function(e) {
return false;
});