diff --git a/1-js/99-js-misc/01-proxy/proxy-inherit.png b/1-js/99-js-misc/01-proxy/proxy-inherit.png index c5f88bcc..f4ce4582 100644 Binary files a/1-js/99-js-misc/01-proxy/proxy-inherit.png and b/1-js/99-js-misc/01-proxy/proxy-inherit.png differ diff --git a/1-js/99-js-misc/01-proxy/proxy-inherit@2x.png b/1-js/99-js-misc/01-proxy/proxy-inherit@2x.png index bfb71b6a..13d760d4 100644 Binary files a/1-js/99-js-misc/01-proxy/proxy-inherit@2x.png and b/1-js/99-js-misc/01-proxy/proxy-inherit@2x.png differ diff --git a/1-js/99-js-misc/01-proxy/proxy.png b/1-js/99-js-misc/01-proxy/proxy.png index 97aa0739..429d1f3a 100644 Binary files a/1-js/99-js-misc/01-proxy/proxy.png and b/1-js/99-js-misc/01-proxy/proxy.png differ diff --git a/1-js/99-js-misc/01-proxy/proxy@2x.png b/1-js/99-js-misc/01-proxy/proxy@2x.png index d4d5f786..06fbfa4a 100644 Binary files a/1-js/99-js-misc/01-proxy/proxy@2x.png and b/1-js/99-js-misc/01-proxy/proxy@2x.png differ diff --git a/2-ui/3-event-details/3-mousemove-mouseover-mouseout-mouseenter-mouseleave/mouseover-mouseout-over-elems.png b/2-ui/3-event-details/3-mousemove-mouseover-mouseout-mouseenter-mouseleave/mouseover-mouseout-over-elems.png index 52b53b64..b421342b 100644 Binary files a/2-ui/3-event-details/3-mousemove-mouseover-mouseout-mouseenter-mouseleave/mouseover-mouseout-over-elems.png and b/2-ui/3-event-details/3-mousemove-mouseover-mouseout-mouseenter-mouseleave/mouseover-mouseout-over-elems.png differ diff --git a/2-ui/3-event-details/3-mousemove-mouseover-mouseout-mouseenter-mouseleave/mouseover-mouseout-over-elems@2x.png b/2-ui/3-event-details/3-mousemove-mouseover-mouseout-mouseenter-mouseleave/mouseover-mouseout-over-elems@2x.png index ed87a406..8a4c8672 100644 Binary files a/2-ui/3-event-details/3-mousemove-mouseover-mouseout-mouseenter-mouseleave/mouseover-mouseout-over-elems@2x.png and b/2-ui/3-event-details/3-mousemove-mouseover-mouseout-mouseenter-mouseleave/mouseover-mouseout-over-elems@2x.png differ diff --git a/2-ui/3-event-details/3-mousemove-mouseover-mouseout-mouseenter-mouseleave/mouseover-mouseout.png b/2-ui/3-event-details/3-mousemove-mouseover-mouseout-mouseenter-mouseleave/mouseover-mouseout.png index e386c5ca..688dcb48 100644 Binary files a/2-ui/3-event-details/3-mousemove-mouseover-mouseout-mouseenter-mouseleave/mouseover-mouseout.png and b/2-ui/3-event-details/3-mousemove-mouseover-mouseout-mouseenter-mouseleave/mouseover-mouseout.png differ diff --git a/2-ui/3-event-details/3-mousemove-mouseover-mouseout-mouseenter-mouseleave/mouseover-mouseout@2x.png b/2-ui/3-event-details/3-mousemove-mouseover-mouseout-mouseenter-mouseleave/mouseover-mouseout@2x.png index a49caf31..6cb3c78a 100644 Binary files a/2-ui/3-event-details/3-mousemove-mouseover-mouseout-mouseenter-mouseleave/mouseover-mouseout@2x.png and b/2-ui/3-event-details/3-mousemove-mouseover-mouseout-mouseenter-mouseleave/mouseover-mouseout@2x.png differ diff --git a/2-ui/3-event-details/4-mouse-drag-and-drop/article.md b/2-ui/3-event-details/4-mouse-drag-and-drop/article.md index 87aa5484..322dfe5f 100644 --- a/2-ui/3-event-details/4-mouse-drag-and-drop/article.md +++ b/2-ui/3-event-details/4-mouse-drag-and-drop/article.md @@ -254,7 +254,7 @@ function onMouseMove(event) { if (currentDroppable != droppableBelow) { // if there are any changes // we're flying in or out... // note: both values can be null - // currentDroppable=null if we were not over a droppable (e.g over an empty space) + // currentDroppable=null if we were not over a droppable before this event (e.g over an empty space) // droppableBelow=null if we're not over a droppable now, during this event if (currentDroppable) { @@ -274,11 +274,11 @@ In the example below when the ball is dragged over the soccer gate, the gate is [codetabs height=250 src="ball4"] -Now we have the current "drop target" in the variable `currentDroppable` during the whole process and can use it to highlight or any other stuff. +Now we have the current "drop target", that we're flying over, in the variable `currentDroppable` during the whole process and can use it to highlight or any other stuff. ## Summary -We considered a basic `Drag'n'Drop` algorithm. +We considered a basic Drag'n'Drop algorithm. The key components: diff --git a/2-ui/99-ui-misc/02-selection-range/selection-direction-backward.png b/2-ui/99-ui-misc/02-selection-range/selection-direction-backward.png index f1125f45..1ed287cb 100644 Binary files a/2-ui/99-ui-misc/02-selection-range/selection-direction-backward.png and b/2-ui/99-ui-misc/02-selection-range/selection-direction-backward.png differ diff --git a/2-ui/99-ui-misc/02-selection-range/selection-direction-backward@2x.png b/2-ui/99-ui-misc/02-selection-range/selection-direction-backward@2x.png index 696c804f..1f4964e0 100644 Binary files a/2-ui/99-ui-misc/02-selection-range/selection-direction-backward@2x.png and b/2-ui/99-ui-misc/02-selection-range/selection-direction-backward@2x.png differ diff --git a/2-ui/99-ui-misc/02-selection-range/selection-direction-forward.png b/2-ui/99-ui-misc/02-selection-range/selection-direction-forward.png index 62320b44..ace0c278 100644 Binary files a/2-ui/99-ui-misc/02-selection-range/selection-direction-forward.png and b/2-ui/99-ui-misc/02-selection-range/selection-direction-forward.png differ diff --git a/2-ui/99-ui-misc/02-selection-range/selection-direction-forward@2x.png b/2-ui/99-ui-misc/02-selection-range/selection-direction-forward@2x.png index 792877c1..ec15a69d 100644 Binary files a/2-ui/99-ui-misc/02-selection-range/selection-direction-forward@2x.png and b/2-ui/99-ui-misc/02-selection-range/selection-direction-forward@2x.png differ diff --git a/figures.sketch b/figures.sketch index 382c7890..0b577f96 100644 Binary files a/figures.sketch and b/figures.sketch differ