| Index: third_party/polymer/v1_0/components-chromium/paper-ripple/paper-ripple.html
|
| diff --git a/third_party/polymer/v1_0/components-chromium/paper-ripple/paper-ripple.html b/third_party/polymer/v1_0/components-chromium/paper-ripple/paper-ripple.html
|
| index bea1ecca475f3cb4f04a413d12eb605315f1088e..1a8e66bc499cf53b4a4a24ffe7c1c71c86efc460 100644
|
| --- a/third_party/polymer/v1_0/components-chromium/paper-ripple/paper-ripple.html
|
| +++ b/third_party/polymer/v1_0/components-chromium/paper-ripple/paper-ripple.html
|
| @@ -1,4 +1,5 @@
|
| <!--
|
| +@license
|
| Copyright (c) 2014 The Polymer Project Authors. All rights reserved.
|
| This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
|
| The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
|
| @@ -35,7 +36,7 @@ Example:
|
| <paper-ripple id="ripple" style="pointer-events: none;"></paper-ripple>
|
| ...
|
| downAction: function(e) {
|
| - this.$.ripple.downAction({x: e.x, y: e.y});
|
| + this.$.ripple.downAction({detail: {x: e.x, y: e.y}});
|
| },
|
| upAction: function(e) {
|
| this.$.ripple.upAction();
|
| @@ -73,15 +74,6 @@ Apply `circle` class to make the rippling effect within a circle.
|
|
|
| </head><body><dom-module id="paper-ripple">
|
|
|
| - <!--
|
| - Fired when the animation finishes. This is useful if you want to wait until the ripple
|
| - animation finishes to perform some action.
|
| -
|
| - @event transitionend
|
| - @param {Object} detail
|
| - @param {Object} detail.node The animated node
|
| - -->
|
| -
|
| <template>
|
| <style>
|
| :host {
|
|
|