OLD | NEW |
1 <!-- | 1 <!-- |
2 Copyright (c) 2014 The Polymer Project Authors. All rights reserved. | 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.g
ithub.io/LICENSE.txt | 3 This code may only be used under the BSD style license found at http://polymer.g
ithub.io/LICENSE.txt |
4 The complete set of authors may be found at http://polymer.github.io/AUTHORS.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/CONTRI
BUTORS.txt | 5 The complete set of contributors may be found at http://polymer.github.io/CONTRI
BUTORS.txt |
6 Code distributed by Google as part of the polymer project is also | 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/PATEN
TS.txt | 7 subject to an additional IP rights grant found at http://polymer.github.io/PATEN
TS.txt |
8 --> | 8 --> |
9 | 9 |
10 <!-- | 10 <!-- |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
53 | 53 |
54 <core-tooltip tipAttribute="htmltooltip"> | 54 <core-tooltip tipAttribute="htmltooltip"> |
55 <div>Example of a rich information tooltip</div> | 55 <div>Example of a rich information tooltip</div> |
56 <div htmltooltip> | 56 <div htmltooltip> |
57 ... | 57 ... |
58 </div> | 58 </div> |
59 </core-tooltip> | 59 </core-tooltip> |
60 | 60 |
61 @group Polymer Core Elements | 61 @group Polymer Core Elements |
62 @element core-tooltip | 62 @element core-tooltip |
63 @extends core-focusable | 63 @mixins Polymer.CoreFocusable https://github.com/polymer/core-focusable |
64 @mixins Polymer.CoreFocusable | 64 @mixins Polymer.CoreResizable https://github.com/polymer/core-resizable |
65 @homepage http://www.polymer-project.org/components/core-tooltip/index.html | 65 @homepage http://www.polymer-project.org/components/core-tooltip/index.html |
66 --> | 66 --> |
67 | 67 |
68 <link rel="import" href="../polymer/polymer.html"> | 68 <link rel="import" href="../polymer/polymer.html"> |
69 <link rel="import" href="../core-focusable/core-focusable.html"> | 69 <link rel="import" href="../core-focusable/core-focusable.html"> |
70 <link rel="import" href="../core-resizable/core-resizable.html"> | 70 <link rel="import" href="../core-resizable/core-resizable.html"> |
71 | 71 |
72 <!-- TODO: would be nice to inherit from label to get .htmlFor, and .control, | 72 <!-- TODO: would be nice to inherit from label to get .htmlFor, and .control, |
73 but the latter is readonly. --> | 73 but the latter is readonly. --> |
74 <!-- TODO: support off center arrows. --> | 74 <!-- TODO: support off center arrows. --> |
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
208 | 208 |
209 }; | 209 }; |
210 | 210 |
211 Polymer.mixin2(proto, Polymer.CoreFocusable); | 211 Polymer.mixin2(proto, Polymer.CoreFocusable); |
212 Polymer.mixin(proto, Polymer.CoreResizable); | 212 Polymer.mixin(proto, Polymer.CoreResizable); |
213 Polymer(proto); | 213 Polymer(proto); |
214 })(); | 214 })(); |
215 | 215 |
216 </script> | 216 </script> |
217 </polymer-element> | 217 </polymer-element> |
OLD | NEW |