From fe153b94fb6d1df7426abd740b3d900102654f4e Mon Sep 17 00:00:00 2001 From: Tim Schaub Date: Sun, 6 Sep 2015 09:31:51 -0600 Subject: [PATCH] Missing drag and drop event description --- src/ol/interaction/draganddropinteraction.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/ol/interaction/draganddropinteraction.js b/src/ol/interaction/draganddropinteraction.js index 4496ef4414..2297e2316d 100644 --- a/src/ol/interaction/draganddropinteraction.js +++ b/src/ol/interaction/draganddropinteraction.js @@ -219,18 +219,21 @@ ol.interaction.DragAndDropEvent = goog.base(this, type, target); /** + * The features parsed from dropped data. * @type {Array.|undefined} * @api stable */ this.features = opt_features; /** + * The dropped file. * @type {File} * @api stable */ this.file = file; /** + * The feature projection. * @type {ol.proj.Projection|undefined} * @api */