Dale
Member since Jun 21, 2016
- Profile: /members/13219-dale.htm
- Comments: 3
Recent Blog Comments By Dale
-
Thinking About Draggability Within A Unidirectional Data Flow In Angular 2 RC 1
Posted on Jun 21, 2016 at 10:17 AM
@Ben, I should also point out the reason the 'mouse' events work and the 'touch' events don't in my case is that the mouse events are 'bound' to the document or window object. The Touch spec binds touch events to the element that was first touched (i.e. touchstart element). So when the touchstart ... read more »
-
Thinking About Draggability Within A Unidirectional Data Flow In Angular 2 RC 1
Posted on Jun 21, 2016 at 10:02 AM
@Ben, Thanks for the fast reply! And Yes touch has its quirks, specifically on my issue this seems to be a Browser implementation detail of the w3 spec on TouchEvents. I could normally code around these shortcomings by keeping the element reference in memory myself until the touchend or touchcance... read more »
-
Thinking About Draggability Within A Unidirectional Data Flow In Angular 2 RC 1
Posted on Jun 21, 2016 at 2:44 AM
Hi Ben, Great post as usual! Just wondering if you have experimented with 'touch' events in regards to draggability ? It's not that different, just add/substitue 'touchstart' for 'mousedown', 'touchend' for 'mouseup', 'touchmove' for 'mousemove' etc. The reason I'm asking is that I am using 'tou... read more »