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-04-08 23:08:50 -04:00
parent d9299a0a48
commit 101944aab9
36 changed files with 240 additions and 66 deletions

View file

@ -1,5 +1,6 @@
<!doctype html>
<!--
@license
Copyright (c) 2015 The Polymer Project Authors. All rights reserved.
This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
@ -69,7 +70,7 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
</div>
<div>
<h3>Example</h3>
<h3>Example with attr-for-selected</h3>
<div class="horizontal-section">
<iron-selector selected="foo" attr-for-selected="name">
<div name="foo">Foo</div>
@ -80,6 +81,20 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
</iron-selector>
</div>
</div>
<div>
<h3>Example with fallback-selection</h3>
<div class="horizontal-section">
<iron-selector selected="non-existing" attr-for-selected="name" fallback-selection="default">
<div name="foo">Foo</div>
<div name="bar">Bar</div>
<div name="baz">Baz</div>
<div name="qux">Qux</div>
<div name="quux">Quux</div>
<div name="default">Default</div>
</iron-selector>
</div>
</div>
</div>
</body>