Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(52)

Unified Diff: third_party/polymer/v1_0/components-chromium/paper-ripple/paper-ripple-extracted.js

Issue 1410143002: Update Polymer to fix closure compile (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@iron-list5
Patch Set: Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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) {

Powered by Google App Engine
This is Rietveld 408576698