| Index: third_party/polymer/v1_0/components-chromium/paper-ripple/paper-ripple-extracted.js
|
| diff --git a/third_party/polymer/v1_0/components-chromium/paper-ripple/paper-ripple-extracted.js b/third_party/polymer/v1_0/components-chromium/paper-ripple/paper-ripple-extracted.js
|
| index 669095974664d76256b26d495ef9e77cbe6caca2..2fc2c24919db99555123078c9094e302d0ff8752 100644
|
| --- a/third_party/polymer/v1_0/components-chromium/paper-ripple/paper-ripple-extracted.js
|
| +++ b/third_party/polymer/v1_0/components-chromium/paper-ripple/paper-ripple-extracted.js
|
| @@ -377,9 +377,9 @@
|
| },
|
|
|
| /**
|
| - * If true, the ripple will not generate a ripple effect
|
| + * If true, the ripple will not generate a ripple effect
|
| * via pointer interaction.
|
| - * Calling ripple's imperative api like `simulatedRipple` will
|
| + * Calling ripple's imperative api like `simulatedRipple` will
|
| * still generate the ripple effect.
|
| */
|
| noink: {
|
| @@ -451,10 +451,10 @@
|
| }, 1);
|
| },
|
|
|
| - /**
|
| - * Provokes a ripple down effect via a UI event,
|
| + /**
|
| + * Provokes a ripple down effect via a UI event,
|
| * respecting the `noink` property.
|
| - * @param {Event=} event
|
| + * @param {Event=} event
|
| */
|
| uiDownAction: function(event) {
|
| if (!this.noink) {
|
| @@ -462,10 +462,10 @@
|
| }
|
| },
|
|
|
| - /**
|
| - * Provokes a ripple down effect via a UI event,
|
| + /**
|
| + * Provokes a ripple down effect via a UI event,
|
| * *not* respecting the `noink` property.
|
| - * @param {Event=} event
|
| + * @param {Event=} event
|
| */
|
| downAction: function(event) {
|
| if (this.holdDown && this.ripples.length > 0) {
|
| @@ -481,10 +481,10 @@
|
| }
|
| },
|
|
|
| - /**
|
| - * Provokes a ripple up effect via a UI event,
|
| + /**
|
| + * Provokes a ripple up effect via a UI event,
|
| * respecting the `noink` property.
|
| - * @param {Event=} event
|
| + * @param {Event=} event
|
| */
|
| uiUpAction: function(event) {
|
| if (!this.noink) {
|
| @@ -492,10 +492,10 @@
|
| }
|
| },
|
|
|
| - /**
|
| - * Provokes a ripple up effect via a UI event,
|
| + /**
|
| + * Provokes a ripple up effect via a UI event,
|
| * *not* respecting the `noink` property.
|
| - * @param {Event=} event
|
| + * @param {Event=} event
|
| */
|
| upAction: function(event) {
|
| if (this.holdDown) {
|
|
|