OLD | NEW |
---|---|
1 {{- Parameters: | 1 {{- Parameters: |
2 |api|: the schema for the API that the function belongs to | 2 |api|: the schema for the API that the function belongs to |
3 |function|: the schema for the function | 3 |function|: the schema for the function |
4 |parentName|: name of the parent object of the function | 4 |parentName|: name of the parent object of the function |
5 |no_link|: if different of null, no link will be shown for types | |
not at google - send to devlin
2014/01/03 23:30:24
no_link -> disableLink
also: "if not false, ..."
not at google - send to devlin
2014/01/03 23:31:43
ah i see that it's actually a matter of null vs no
Renato Mangini (chromium)
2014/02/06 03:19:17
Done.
| |
5 -}} | 6 -}} |
6 <div class="line"> | 7 <code class="prettyprint"> |
7 <span>{{?r:function.returns}}{{+partials.variable_type type:r/}} {{/}}{{?api}}{{ api.namespace}}.{{/}}{{?parentName}}{{parentName}}.{{/}}{{function.name}}</span> ({{#p:function.parameters}}{{+partials.parameter_item parameter:p/}}{{^p.last}}, {{/}}{{/}}) | 8 {{?r:function.returns}}{{+partials.variable_type type:r no_link:no_link/}} {{/}} {{?api}}{{api.namespace}}.{{/}}{{?parentName}}{{parentName}}.{{/}}{{function.nam e}}({{#p:function.parameters}}{{+partials.parameter_item parameter:p no_link:no_ link/}}{{^p.last}}, {{/}}{{/}}) |
8 </div> | 9 </code> |
OLD | NEW |