Add ICU message format support
[chromium-blink-merge.git] / third_party / polymer / v1_0 / components-chromium / neon-animation / animations / fade-out-animation-extracted.js
blob3f06ec54b9a42399d323e7fd5d8a5b5ea59bc6df
3   Polymer({
5     is: 'fade-out-animation',
7     behaviors: [
8       Polymer.NeonAnimationBehavior
9     ],
11     configure: function(config) {
12       var node = config.node;
13       this._effect = new KeyframeEffect(node, [
14         {'opacity': '1'},
15         {'opacity': '0'}
16       ], this.timingFromConfig(config));
17       return this._effect;
18     }
20   });