Angular
1
Вклад в тег
const foo = (function(){
}).bind(this)
host: {
"[@state]":"visible?'expanded':'collapsed'"
},
animations: [
trigger('state', [
state('collapsed', style({})),
state('expanded', style({})),
transition('*<=>*', animate(300))
])
]