From ad1dec58ecdb5c3a67e115d73c1b4341050e6234 Mon Sep 17 00:00:00 2001 From: Frederic Junod Date: Mon, 3 Sep 2018 15:15:58 +0200 Subject: [PATCH] Rename Extent to ExtentInteraction --- src/ol/interaction/Extent.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/ol/interaction/Extent.js b/src/ol/interaction/Extent.js index 7757a2e315..2139007ffa 100644 --- a/src/ol/interaction/Extent.js +++ b/src/ol/interaction/Extent.js @@ -48,7 +48,7 @@ const ExtentEventType = { /** * @classdesc - * Events emitted by {@link module:ol/interaction/Extent~Extent} instances are + * Events emitted by {@link module:ol/interaction/Extent~ExtentInteraction} instances are * instances of this type. */ class ExtentInteractionEvent extends Event { @@ -313,7 +313,7 @@ class ExtentInteraction extends PointerInteraction { /** * @param {module:ol/MapBrowserEvent} mapBrowserEvent Event. * @return {boolean} Propagate event? - * @this {module:ol/interaction/Extent~Extent} + * @this {module:ol/interaction/Extent~ExtentInteraction} */ function handleEvent(mapBrowserEvent) { if (!(mapBrowserEvent instanceof MapBrowserPointerEvent)) { @@ -332,7 +332,7 @@ function handleEvent(mapBrowserEvent) { /** * @param {module:ol/MapBrowserPointerEvent} mapBrowserEvent Event. * @return {boolean} Event handled? - * @this {module:ol/interaction/Extent~Extent} + * @this {module:ol/interaction/Extent~ExtentInteraction} */ function handleDownEvent(mapBrowserEvent) { const pixel = mapBrowserEvent.pixel; @@ -391,7 +391,7 @@ function handleDownEvent(mapBrowserEvent) { /** * @param {module:ol/MapBrowserPointerEvent} mapBrowserEvent Event. * @return {boolean} Event handled? - * @this {module:ol/interaction/Extent~Extent} + * @this {module:ol/interaction/Extent~ExtentInteraction} */ function handleDragEvent(mapBrowserEvent) { if (this.pointerHandler_) { @@ -405,7 +405,7 @@ function handleDragEvent(mapBrowserEvent) { /** * @param {module:ol/MapBrowserPointerEvent} mapBrowserEvent Event. * @return {boolean} Stop drag sequence? - * @this {module:ol/interaction/Extent~Extent} + * @this {module:ol/interaction/Extent~ExtentInteraction} */ function handleUpEvent(mapBrowserEvent) { this.pointerHandler_ = null;