Skip to content

Commit

Permalink
Remove useless comment from docs
Browse files Browse the repository at this point in the history
  • Loading branch information
youknowriad committed May 7, 2019
1 parent ec801e5 commit 709cf53
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions packages/block-editor/src/components/block-list/block.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,6 @@ import { isInsideRootBlock } from '../../utils/dom';
* selection to take effect unhampered.
*
* @param {DragEvent} event Drag event.
*
* @return {void}
*/
const preventDrag = ( event ) => {
event.preventDefault();
Expand Down Expand Up @@ -249,8 +247,6 @@ function BlockListBlock( {
* Marks the block as selected when focused and not already selected. This
* specifically handles the case where block does not set focus on its own
* (via `setFocus`), typically if there is no focusable input in the block.
*
* @return {void}
*/
const onFocus = () => {
if ( ! isSelected && ! isPartOfMultiSelection ) {
Expand Down Expand Up @@ -300,8 +296,6 @@ function BlockListBlock( {
* Begins tracking cursor multi-selection when clicking down within block.
*
* @param {MouseEvent} event A mousedown event.
*
* @return {void}
*/
const onPointerDown = ( event ) => {
// Not the main button.
Expand Down

0 comments on commit 709cf53

Please sign in to comment.