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

update polymer components

This commit is contained in:
Luke Pulverenti 2015-09-04 00:33:31 -04:00
parent 478617f766
commit c7fa2299da
31 changed files with 813 additions and 1954 deletions

View file

@ -34,9 +34,9 @@ style this element.
<dom-module id="paper-textarea">
<template>
<style>
:host {
display: block;
}
:host {
display: block;
}
</style>
<paper-input-container no-label-float$="[[noLabelFloat]]" always-float-label="[[_computeAlwaysFloatLabel(alwaysFloatLabel,placeholder)]]" auto-validate$="[[autoValidate]]" disabled$="[[disabled]]" invalid="[[invalid]]">
@ -68,15 +68,10 @@ style this element.
</paper-input-container>
</template>
</dom-module>
<script>
(function() {
Polymer({
is: 'paper-textarea',
behaviors: [
@ -84,7 +79,6 @@ style this element.
],
properties: {
_ariaLabelledBy: {
observer: '_ariaLabelledByChanged',
type: String
@ -118,8 +112,7 @@ style this element.
maxRows: {
type: Number,
value: 0
},
}
},
_ariaLabelledByChanged: function(ariaLabelledBy) {
@ -129,9 +122,5 @@ style this element.
_ariaDescribedByChanged: function(ariaDescribedBy) {
this.$.input.textarea.setAttribute('aria-describedby', ariaDescribedBy);
}
});
})();
</script>