Shay Doherty
Shay Doherty
I think we need to distinguish tooltips from other overlays perhaps, as they typically only show on hover and maybe are an exclusion to this rule ?
do you have any thoughts on this issue @johnleider @KaelWD ?
@phphe i am trying figure out where/how i can override opacity set here: https://github.com/phphe/draggable-helper/blob/dc3064df169907c54b63d563df324c5adf2f1542/src/index.js#L80 any tips ?
I found that using mouse position solves this rather nicely, any thoughts? `function resolveDragedElAndInitialPosition(e) { var el0 = opt.getEl ? opt.getEl(dragHandlerEl, opt) : dragHandlerEl; var el = el0; if (opt.clone)...
great thanks, it should be a matter of adding the touch event listeners to your draggablehelper ?
@phphe did you have any joy looking at making the control touch enabled ?
I did some touch stuff yesterday, jquery.nestable handles it well https://github.com/RamonSmit/Nestable2/blob/master/jquery.nestable.js
@phphe I found that using mouse/touch position solves this rather nicely, any thoughts? `function resolveDragedElAndInitialPosition(e) { var el0 = opt.getEl ? opt.getEl(dragHandlerEl, opt) : dragHandlerEl; var el = el0; if...