From 5ed52c0b75cced3259c40963e58ccc1618c0fe85 Mon Sep 17 00:00:00 2001 From: Andy Dvorak Date: Sat, 9 Feb 2019 13:20:29 -0800 Subject: [PATCH] WIP: Remove old JSDoc annotation --- packages/mdc-chips/chip/foundation.ts | 1 - packages/mdc-menu-surface/index.ts | 4 +++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/packages/mdc-chips/chip/foundation.ts b/packages/mdc-chips/chip/foundation.ts index dcacb8bb8ef..6d4e2e905c8 100644 --- a/packages/mdc-chips/chip/foundation.ts +++ b/packages/mdc-chips/chip/foundation.ts @@ -172,7 +172,6 @@ class MDCChipFoundation extends MDCFoundation { /** * Handles an interaction event on the trailing icon element. This is used to * prevent the ripple from activating on interaction with the trailing icon. - * @param {!Event} evt */ handleTrailingIconInteraction(evt: MouseEvent | KeyboardEvent) { const isEnter = (evt as KeyboardEvent).key === 'Enter' || (evt as KeyboardEvent).keyCode === 13; diff --git a/packages/mdc-menu-surface/index.ts b/packages/mdc-menu-surface/index.ts index 720ee444e3b..b9c3771b592 100644 --- a/packages/mdc-menu-surface/index.ts +++ b/packages/mdc-menu-surface/index.ts @@ -132,7 +132,9 @@ class MDCMenuSurface extends MDCComponent { this.setIsHoisted(true); } - /** @param corner Default anchor corner alignment of top-left surface corner. */ + /** + * @param corner Default anchor corner alignment of top-left surface corner. + */ setAnchorCorner(corner: Corner) { this.foundation_.setAnchorCorner(corner); }