Rev 1221 | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
1185 | werner | 1 | <div class="page-header"> |
2 | <h1>{{name}} <small>Class</small></h1> |
||
3 | </div> |
||
4 | |||
5 | <div class="well well-small"> |
||
6 | {{#if uses}} |
||
7 | <div class="uses"> |
||
8 | Uses |
||
9 | <ul class="inline commas"> |
||
10 | {{#uses}} |
||
11 | <li><a href="{{.}}.html">{{.}}</a></li> |
||
12 | {{/uses}} |
||
13 | </ul> |
||
14 | </div> |
||
15 | {{/if}} |
||
16 | |||
17 | {{#if extends}} |
||
18 | <div class="extends"> |
||
19 | Extends {{#crossLink extends}}{{/crossLink}} |
||
20 | </div> |
||
21 | {{/if}} |
||
22 | |||
23 | {{#if foundAt}} |
||
24 | <div class="foundat"> |
||
25 | Defined in: <a href="{{foundAt}}">`{{{file}}}:{{{line}}}`</a> |
||
26 | </div> |
||
27 | {{/if}} |
||
28 | |||
29 | {{#if module}} |
||
30 | {{#if submodule}} |
||
31 | Module: {{#crossLinkModule submodule}}{{/crossLinkModule}}<br> |
||
32 | Parent Module: {{#crossLinkModule module}}{{/crossLinkModule}} |
||
33 | {{else}} |
||
34 | Module: {{#crossLinkModule module}}{{/crossLinkModule}} |
||
35 | {{/if}} |
||
36 | {{/if}} |
||
37 | |||
38 | {{#if since}} |
||
39 | <p>Available since {{since}}</p> |
||
40 | {{/if}} |
||
41 | </div> |
||
42 | |||
43 | {{#if deprecated}} |
||
44 | <div class="well well-small"> |
||
45 | <p> |
||
46 | {{#if deprecationMessage}} |
||
47 | <strong>Deprecated:</strong> {{deprecationMessage}} |
||
48 | {{else}} |
||
49 | This class is deprecated. |
||
50 | {{/if}} |
||
51 | </p> |
||
52 | </div> |
||
53 | {{/if}} |
||
54 | |||
55 | <div class="well well-small"> |
||
56 | {{{classDescription}}} |
||
57 | </div> |
||
58 | |||
59 | {{#is_constructor}} |
||
60 | <div class="constructor"> |
||
61 | <h2>Constructor</h2> |
||
62 | {{>method}} |
||
63 | </div> |
||
64 | {{/is_constructor}} |
||
65 | |||
66 | <div> |
||
67 | <ul class="nav nav-tabs"> |
||
68 | <li class="active"><a data-toggle="tab" href="#index">Index</a></li> |
||
69 | |||
70 | {{#if methods}} |
||
71 | <li><a data-toggle="tab" href="#methods">Methods</a></li> |
||
72 | {{/if}} |
||
73 | {{#if properties}} |
||
74 | <li><a data-toggle="tab" href="#properties">Properties</a></li> |
||
75 | {{/if}} |
||
76 | {{#if attrs}} |
||
77 | <li><a data-toggle="tab" href="#attrs">Attributes</a></li> |
||
78 | {{/if}} |
||
79 | {{#if events}} |
||
80 | <li><a data-toggle="tab" href="#events">Events</a></li> |
||
81 | {{/if}} |
||
82 | </ul> |
||
83 | |||
84 | <div class="tab-content"> |
||
85 | <div id="index" class="tab-pane active"> |
||
86 | <h2 class="off-left">Item Index</h2> |
||
87 | |||
88 | {{#if methods}} |
||
89 | <div class="index-section methods"> |
||
90 | <h3>Methods</h3> |
||
91 | |||
92 | <ul class="index-list methods{{#if extends}} extends{{/if}}"> |
||
93 | {{#methods}} |
||
94 | <li class="index-item method{{#if access}} {{access}}{{/if}}{{#if deprecated}} deprecated{{/if}}{{#if overwritten_from}} inherited{{/if}}{{#if extended_from}} inherited{{/if}}"> |
||
95 | <a href="#" data-tabid="#methods" data-anchor="#method_{{name}}" data-tablink="{{name}}">{{name}}</a> |
||
96 | |||
97 | {{#if static}} |
||
98 | <span class="flag static">static</span> |
||
99 | {{/if}} |
||
100 | {{#if deprecated}} |
||
101 | <span class="flag deprecated">deprecated</span> |
||
102 | {{/if}} |
||
103 | </li> |
||
104 | {{/methods}} |
||
105 | </ul> |
||
106 | </div> |
||
107 | {{/if}} |
||
108 | |||
109 | {{#if properties}} |
||
110 | <div class="index-section properties"> |
||
111 | <h3>Properties</h3> |
||
112 | |||
113 | <ul class="index-list properties{{#if extends}} extends{{/if}}"> |
||
114 | {{#properties}} |
||
115 | <li class="index-item property{{#if access}} {{access}}{{/if}}{{#if deprecated}} deprecated{{/if}}{{#if overwritten_from}} inherited{{/if}}{{#if extended_from}} inherited{{/if}}"> |
||
116 | <a href="#" data-tabid="#properties" data-anchor="#property_{{name}}" data-tablink="{{name}}">{{name}}</a> |
||
117 | |||
118 | {{#if static}} |
||
119 | <span class="flag static">static</span> |
||
120 | {{/if}} |
||
121 | {{#if deprecated}} |
||
122 | <span class="flag deprecated">deprecated</span> |
||
123 | {{/if}} |
||
124 | </li> |
||
125 | {{/properties}} |
||
126 | </ul> |
||
127 | </div> |
||
128 | {{/if}} |
||
129 | |||
130 | {{#if attrs}} |
||
131 | <div class="index-section attrs"> |
||
132 | <h3>Attributes</h3> |
||
133 | |||
134 | <ul class="index-list attrs{{#if extends}} extends{{/if}}"> |
||
135 | {{#attrs}} |
||
136 | <li class="index-item attr{{#if access}} {{access}}{{/if}}{{#if deprecated}} deprecated{{/if}}{{#if overwritten_from}} inherited{{/if}}{{#if extended_from}} inherited{{/if}}"> |
||
137 | <a href="#" data-tabid="#attrs" data-anchor="#attr_{{name}}" data-tablink="{{name}}">{{name}}</a> |
||
138 | </li> |
||
139 | {{/attrs}} |
||
140 | </ul> |
||
141 | </div> |
||
142 | {{/if}} |
||
143 | |||
144 | {{#if events}} |
||
145 | <div class="index-section events"> |
||
146 | <h3>Events</h3> |
||
147 | |||
148 | <ul class="index-list events{{#if extends}} extends{{/if}}"> |
||
149 | {{#events}} |
||
150 | <li class="index-item event{{#if access}} {{access}}{{/if}}{{#if deprecated}} deprecated{{/if}}{{#if overwritten_from}} inherited{{/if}}{{#if extended_from}} inherited{{/if}}"> |
||
151 | <a href="#" data-tabid="#events" data-anchor="#event_{{name}}" data-tablink="{{name}}">{{name}}</a> |
||
152 | |||
153 | {{#if static}} |
||
154 | <span class="flag static">static</span> |
||
155 | {{/if}} |
||
156 | {{#if deprecated}} |
||
157 | <span class="flag deprecated">deprecated</span> |
||
158 | {{/if}} |
||
159 | </li> |
||
160 | {{/events}} |
||
161 | </ul> |
||
162 | </div> |
||
163 | {{/if}} |
||
164 | </div> |
||
165 | |||
166 | {{#if methods}} |
||
167 | <div id="methods" class="tab-pane"> |
||
168 | <h2 class="off-left">Methods</h2> |
||
169 | |||
170 | {{#methods}} |
||
171 | {{>method}} |
||
172 | {{/methods}} |
||
173 | </div> |
||
174 | {{/if}} |
||
175 | |||
176 | {{#if properties}} |
||
177 | <div id="properties" class="tab-pane"> |
||
178 | <h2 class="off-left">Properties</h2> |
||
179 | |||
180 | {{#properties}} |
||
181 | {{>props}} |
||
182 | {{/properties}} |
||
183 | </div> |
||
184 | {{/if}} |
||
185 | |||
186 | {{#if attrs}} |
||
187 | <div id="attrs" class="tab-pane"> |
||
188 | <h2 class="off-left">Attributes</h2> |
||
189 | |||
190 | {{#attrs}} |
||
191 | {{>attrs}} |
||
192 | {{/attrs}} |
||
193 | </div> |
||
194 | {{/if}} |
||
195 | |||
196 | {{#if events}} |
||
197 | <div id="events" class="tab-pane"> |
||
198 | <h2 class="off-left">Events</h2> |
||
199 | |||
200 | {{#events}} |
||
201 | {{>events}} |
||
202 | {{/events}} |
||
203 | </div> |
||
204 | {{/if}} |
||
205 | </div> |
||
206 | </div> |