repo.or.cz
/
chromium-blink-merge.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Pin Chrome's shortcut to the Win10 Start menu on install and OS upgrade.
[chromium-blink-merge.git]
/
third_party
/
polymer
/
v1_0
/
components-chromium
/
neon-animation
/
animations
/
fade-out-animation-extracted.js
blob
3f06ec54b9a42399d323e7fd5d8a5b5ea59bc6df
1
2
3
Polymer
({
4
5
is
:
'fade-out-animation'
,
6
7
behaviors
: [
8
Polymer
.
NeonAnimationBehavior
9
],
10
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
}
19
20
});
21