| 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 1a8e66bc499cf53b4a4a24ffe7c1c71c86efc460..bea1ecca475f3cb4f04a413d12eb605315f1088e 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,5 +1,4 @@
|
| <!--
|
| -@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
|
| @@ -36,7 +35,7 @@
|
| <paper-ripple id="ripple" style="pointer-events: none;"></paper-ripple>
|
| ...
|
| downAction: function(e) {
|
| - this.$.ripple.downAction({detail: {x: e.x, y: e.y}});
|
| + this.$.ripple.downAction({x: e.x, y: e.y});
|
| },
|
| upAction: function(e) {
|
| this.$.ripple.upAction();
|
| @@ -73,6 +72,15 @@
|
| -->
|
|
|
| </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>
|
|
|