FlexiColorPicker icon indicating copy to clipboard operation
FlexiColorPicker copied to clipboard

Allow dragging on picker and slider

Open grubshka opened this issue 12 years ago • 2 comments

It should be quite easy and user-friendly to allow dragging on the picker and the slider, listening to "mousedown" and "mousemove" instead of click.

grubshka avatar Jun 26 '12 16:06 grubshka

This works on Chrome, but not Firefox.

sroussey avatar Jan 31 '13 19:01 sroussey

A quick fix for firefox:

$(document).bind("dragstart",function(e){
    if(e.target.nodeName.toUpperCase()=="RECT"){
        return false;
    }
});

malihu avatar Jun 04 '13 10:06 malihu