2 Copyright (c) 2014 The Polymer Project Authors. All rights reserved.
3 This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
4 The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
5 The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
6 Code distributed by Google as part of the polymer project is also
7 subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
9 `core-collapse` creates a collapsible block of content. By default, the content
10 will be collapsed. Use `opened` or `toggle()` to show/hide the content.
12 <button on-click="{{toggle}}">toggle collapse</button>
14 <core-collapse id="collapse">
21 this.$.collapse.toggle();
24 `core-collapse` adjusts the height/width of the collapsible element to show/hide
25 the content. So avoid putting padding/margin/border on the collapsible directly,
26 and instead put a div inside and style that.
31 border: 1px solid #dedede;
36 <div class="collapse-content">
41 @group Polymer Core Elements
42 @element core-collapse
43 --><html><head><link rel=
"import" href=
"../polymer/polymer.html">
45 <link rel=
"stylesheet" href=
"core-collapse.css" shim-shadowdom=
"">
47 </head><body><polymer-element name=
"core-collapse" attributes=
"target horizontal opened duration fixedSize allowOverflow" assetpath=
"">
55 <script charset=
"utf-8" src=
"core-collapse-extracted.js"></script></body></html>