mirror of
https://github.com/google/blockly.git
synced 2026-01-09 10:00:09 +01:00
Add namespace and alias annotations to jsdoc (#5550)
* Add annotations to files under core/events * Add annotations to files under core/interfaces * Add annotations to files under core/keyboard_nav * Add annotations to files under core/renderers * Add annotations to files under core/serialization * Add annotations to files under core/theme * Add annotations to files under core/toolbox * Add annotations to files under core/utils * Add annotations to files under core
This commit is contained in:
@@ -10,6 +10,10 @@
|
||||
*/
|
||||
'use strict';
|
||||
|
||||
/**
|
||||
* Methods for dragging a bubble visually.
|
||||
* @namespace Blockly.BubbleDragger
|
||||
*/
|
||||
goog.module('Blockly.BubbleDragger');
|
||||
|
||||
const ComponentManager = goog.require('Blockly.ComponentManager');
|
||||
@@ -43,6 +47,7 @@ goog.require('Blockly.constants');
|
||||
* @param {!IBubble} bubble The item on the bubble canvas to drag.
|
||||
* @param {!WorkspaceSvg} workspace The workspace to drag on.
|
||||
* @constructor
|
||||
* @alias Blockly.BubbleDragger
|
||||
*/
|
||||
const BubbleDragger = function(bubble, workspace) {
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user