From b636c79ac03923ca457928902caefe0924c7bca7 Mon Sep 17 00:00:00 2001 From: kozbial Date: Fri, 6 Aug 2021 18:00:35 -0700 Subject: [PATCH] Add description and reorder requires --- core/workspace_comment.js | 1 + core/workspace_svg.js | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/core/workspace_comment.js b/core/workspace_comment.js index e7660e44b..78019bc80 100644 --- a/core/workspace_comment.js +++ b/core/workspace_comment.js @@ -104,6 +104,7 @@ const WorkspaceComment = function(workspace, content, height, width, opt_id) { this.content_ = content; /** + * Whether this comment has been disposed. * @protected * @type {boolean} */ diff --git a/core/workspace_svg.js b/core/workspace_svg.js index e979e8f51..6def3fc5c 100644 --- a/core/workspace_svg.js +++ b/core/workspace_svg.js @@ -71,8 +71,8 @@ goog.requireType('Blockly.ScrollbarPair'); goog.requireType('Blockly.Theme'); goog.requireType('Blockly.Trashcan'); goog.requireType('Blockly.VariableModel'); -goog.requireType('Blockly.WorkspaceCommentSvg'); goog.requireType('Blockly.WorkspaceComment'); +goog.requireType('Blockly.WorkspaceCommentSvg'); goog.requireType('Blockly.ZoomControls');