1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

update components

This commit is contained in:
Luke Pulverenti 2015-06-25 21:13:51 -04:00
parent c4dadd58bd
commit cee4794cd3
64 changed files with 1378 additions and 297 deletions

View file

@ -15,9 +15,9 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
/**
* Use `Polymer.NeonSharedElementAnimationBehavior` to implement shared element animations.
* @polymerBehavior
* @polymerBehavior Polymer.NeonSharedElementAnimationBehavior
*/
Polymer.NeonSharedElementAnimationBehavior = [Polymer.NeonAnimationBehavior, {
Polymer.NeonSharedElementAnimationBehaviorImpl = {
properties: {
@ -61,6 +61,12 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
return this.sharedElements;
}
}];
};
/** @polymerBehavior Polymer.NeonSharedElementAnimationBehavior */
Polymer.NeonSharedElementAnimationBehavior = [
Polymer.NeonAnimationBehavior,
Polymer.NeonSharedElementAnimationBehaviorImpl
];
</script>