Skip to content

Commit

Permalink
Remove "Polymer" namespace on references to behaviors.
Browse files Browse the repository at this point in the history
Because it doesn't exist anymore, and this confuses Analyzer.
  • Loading branch information
aomarks committed Aug 10, 2018
1 parent 9e490b5 commit 20d38d8
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion paper-button-behavior.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import {IronControlState} from '@polymer/iron-behaviors/iron-control-state.js';

import {PaperRippleBehavior} from './paper-ripple-behavior.js';

/** @polymerBehavior Polymer.PaperButtonBehavior */
/** @polymerBehavior PaperButtonBehavior */
export const PaperButtonBehaviorImpl = {
properties: {
/**
Expand Down
10 changes: 5 additions & 5 deletions paper-checked-element-behavior.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ import {PaperInkyFocusBehavior} from './paper-inky-focus-behavior.js';
import {PaperRippleBehavior} from './paper-ripple-behavior.js';

/**
* Use `Polymer.PaperCheckedElementBehavior` to implement a custom element
* that has a `checked` property similar to `Polymer.IronCheckedElementBehavior`
* and is compatible with having a ripple effect.
* @polymerBehavior Polymer.PaperCheckedElementBehavior
* Use `PaperCheckedElementBehavior` to implement a custom element that has a
* `checked` property similar to `IronCheckedElementBehavior` and is compatible
* with having a ripple effect.
* @polymerBehavior PaperCheckedElementBehavior
*/
export const PaperCheckedElementBehaviorImpl = {
/**
Expand Down Expand Up @@ -50,7 +50,7 @@ export const PaperCheckedElementBehaviorImpl = {
}
};

/** @polymerBehavior Polymer.PaperCheckedElementBehavior */
/** @polymerBehavior */
export const PaperCheckedElementBehavior = [
PaperInkyFocusBehavior,
IronCheckedElementBehavior,
Expand Down
8 changes: 4 additions & 4 deletions paper-inky-focus-behavior.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ import {IronControlState} from '@polymer/iron-behaviors/iron-control-state.js';
import {PaperRippleBehavior} from './paper-ripple-behavior.js';

/**
* `Polymer.PaperInkyFocusBehavior` implements a ripple when the element has
* keyboard focus.
* `PaperInkyFocusBehavior` implements a ripple when the element has keyboard
* focus.
*
* @polymerBehavior Polymer.PaperInkyFocusBehavior
* @polymerBehavior PaperInkyFocusBehavior
*/
export const PaperInkyFocusBehaviorImpl = {
observers: ['_focusedChanged(receivedFocusFromKeyboard)'],
Expand All @@ -42,7 +42,7 @@ export const PaperInkyFocusBehaviorImpl = {
}
};

/** @polymerBehavior Polymer.PaperInkyFocusBehavior */
/** @polymerBehavior */
export const PaperInkyFocusBehavior = [
IronButtonState,
IronControlState,
Expand Down
8 changes: 4 additions & 4 deletions paper-ripple-behavior.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ import {IronButtonStateImpl} from '@polymer/iron-behaviors/iron-button-state.js'
import {dom} from '@polymer/polymer/lib/legacy/polymer.dom.js';

/**
* `Polymer.PaperRippleBehavior` dynamically implements a ripple
* when the element has focus via pointer or keyboard.
* `PaperRippleBehavior` dynamically implements a ripple when the element has
* focus via pointer or keyboard.
*
* NOTE: This behavior is intended to be used in conjunction with and after
* `Polymer.IronButtonState` and `Polymer.IronControlState`.
* `IronButtonState` and `IronControlState`.
*
* @polymerBehavior Polymer.PaperRippleBehavior
* @polymerBehavior PaperRippleBehavior
*/
export const PaperRippleBehavior = {
properties: {
Expand Down

0 comments on commit 20d38d8

Please sign in to comment.