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 2016-07-15 17:16:18 -04:00
parent 9254ff721d
commit 3197c48232
162 changed files with 902 additions and 9728 deletions

View file

@ -13,12 +13,9 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
<link rel="import" href="paper-ripple-behavior.html">
<script>
/** @polymerBehavior Polymer.PaperButtonBehavior */
Polymer.PaperButtonBehaviorImpl = {
properties: {
/**
* The z-depth of this element, from 0-5. Setting to 0 will remove the
* shadow, and each increasing number greater than 0 will be "deeper"
@ -33,7 +30,6 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
reflectToAttribute: true,
readOnly: true
}
},
observers: [
@ -89,7 +85,6 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
this._ripple.uiUpAction();
}
}
};
/** @polymerBehavior */
@ -99,5 +94,4 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
Polymer.PaperRippleBehavior,
Polymer.PaperButtonBehaviorImpl
];
</script>