From 1931c31aa6415cb4b37174b6d911f6827ae33a9c Mon Sep 17 00:00:00 2001 From: Monica Kozbial <6621618+moniika@users.noreply.github.com> Date: Mon, 14 Jun 2021 12:19:36 -0700 Subject: [PATCH] Update JsDoc for IDragTarget (#4907) --- core/interfaces/i_drag_target.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/interfaces/i_drag_target.js b/core/interfaces/i_drag_target.js index 186bc8cb9..0af765d57 100644 --- a/core/interfaces/i_drag_target.js +++ b/core/interfaces/i_drag_target.js @@ -30,7 +30,8 @@ Blockly.IDragTarget = function() {}; /** * Returns the bounding rectangle of the drag target area in pixel units * relative to viewport. - * @return {Blockly.utils.Rect} The component's bounding box. + * @return {?Blockly.utils.Rect} The component's bounding box. Null if drag + * target area should be ignored. */ Blockly.IDragTarget.prototype.getClientRect;