Skip to content

Commit

Permalink
Remove Polymer prefix from polymerBehavior annotation.
Browse files Browse the repository at this point in the history
  • Loading branch information
aomarks committed Aug 12, 2018
1 parent f6f96ac commit 2b27399
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions iron-menu-behavior.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ import {IronSelectableBehavior} from '@polymer/iron-selector/iron-selectable.js'
import {dom} from '@polymer/polymer/lib/legacy/polymer.dom.js';

/**
* `Polymer.IronMenuBehavior` implements accessible menu behavior.
* `IronMenuBehavior` implements accessible menu behavior.
*
* @demo demo/index.html
* @polymerBehavior Polymer.IronMenuBehavior
* @polymerBehavior IronMenuBehavior
*/
export const IronMenuBehaviorImpl = {

Expand Down Expand Up @@ -432,6 +432,6 @@ export const IronMenuBehaviorImpl = {

IronMenuBehaviorImpl._shiftTabPressed = false;

/** @polymerBehavior Polymer.IronMenuBehavior */
/** @polymerBehavior */
export const IronMenuBehavior =
[IronMultiSelectableBehavior, IronA11yKeysBehavior, IronMenuBehaviorImpl];
6 changes: 3 additions & 3 deletions iron-menubar-behavior.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ import '@polymer/polymer/polymer-legacy.js';
import {IronMenuBehavior} from './iron-menu-behavior.js';

/**
* `Polymer.IronMenubarBehavior` implements accessible menubar behavior.
* `IronMenubarBehavior` implements accessible menubar behavior.
*
* @polymerBehavior Polymer.IronMenubarBehavior
* @polymerBehavior IronMenubarBehavior
*/
export const IronMenubarBehaviorImpl = {

Expand Down Expand Up @@ -69,5 +69,5 @@ export const IronMenubarBehaviorImpl = {

};

/** @polymerBehavior Polymer.IronMenubarBehavior */
/** @polymerBehavior */
export const IronMenubarBehavior = [IronMenuBehavior, IronMenubarBehaviorImpl];

0 comments on commit 2b27399

Please sign in to comment.