Coding style: comments

This commit is contained in:
Lyubo Marinov
2018-05-16 16:49:03 -05:00
parent f54f5df428
commit df8eb36d0e
7 changed files with 123 additions and 91 deletions

View File

@@ -9,13 +9,16 @@ import type { AbstractButtonProps } from '../../../base/toolbox';
import OverflowMenu from './OverflowMenu';
/**
* The type of the React {@code Component} props of {@link OverflowMenuButton}.
*/
type Props = AbstractButtonProps & {
/**
* The redux {@code dispatch} function.
*/
dispatch: Function
}
};
/**
* An implementation of a button for showing the {@code OverflowMenu}.
@@ -26,9 +29,9 @@ class OverflowMenuButton extends AbstractButton<Props, *> {
label = 'toolbar.moreActions';
/**
* Handles clicking / pressing the button.
* Handles clicking / pressing this {@code OverflowMenuButton}.
*
* @private
* @protected
* @returns {void}
*/
_handleClick() {