mirror of
https://github.com/google/blockly.git
synced 2026-01-07 17:10:11 +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';
|
||||
|
||||
/**
|
||||
* Class for a button in the flyout.
|
||||
* @namespace Blockly.FlyoutButton
|
||||
*/
|
||||
goog.module('Blockly.FlyoutButton');
|
||||
|
||||
const Coordinate = goog.require('Blockly.utils.Coordinate');
|
||||
@@ -35,6 +39,7 @@ const utils = goog.require('Blockly.utils');
|
||||
* @param {boolean} isLabel Whether this button should be styled as a label.
|
||||
* @constructor
|
||||
* @package
|
||||
* @alias Blockly.FlyoutButton
|
||||
*/
|
||||
const FlyoutButton = function(workspace, targetWorkspace, json, isLabel) {
|
||||
// Labels behave the same as buttons, but are styled differently.
|
||||
|
||||
Reference in New Issue
Block a user