Chromecast: registers old client_id metrics pref.
[chromium-blink-merge.git] / third_party / polymer / v0_8 / components / iron-pages / iron-pages.html
blob6fe2f482845e12ac7960c358e3f8a9d6c4bf073d
1 <!--
2 @license
3 Copyright (c) 2015 The Polymer Project Authors. All rights reserved.
4 This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
5 The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
6 The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
7 Code distributed by Google as part of the polymer project is also
8 subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
9 -->
11 <link rel="import" href="../polymer/polymer.html">
12 <link rel="import" href="../iron-resizable-behavior/iron-resizable-behavior.html">
13 <link rel="import" href="../iron-selector/iron-selectable.html">
15 <!--
16 `iron-pages` is used to select one of its children to show. One use is to cycle through a list of
17 children "pages".
19 Example:
21 <iron-pages selected="0">
22 <div>One</div>
23 <div>Two</div>
24 <div>Three</div>
25 </iron-pages>
27 <script>
28 document.addEventListener('click', function(e) {
29 var pages = document.querySelector('iron-pages');
30 pages.selectNext();
31 });
32 </script>
34 @group Iron Elements
35 @class iron-pages
36 @hero hero.svg
37 @demo demo/index.html
38 @extends iron-selector
39 -->
41 <dom-module id="iron-pages">
43 <style>
45 :host {
46 display: block;
49 :host > ::content > :not(.iron-selected) {
50 display: none !important;
53 </style>
55 <template>
57 <content></content>
59 </template>
61 </dom-module>
63 <script>
65 Polymer({
67 is: 'iron-pages',
69 behaviors: [
70 Polymer.IronResizableBehavior,
71 Polymer.IronSelectableBehavior
74 observers: [
75 '_selectedPageChanged(selected)'
78 _selectedPageChanged: function(selected, old) {
79 this.async(this.notifyResize);
81 });
83 </script>