--- layout: "v2_fluid/docs_base" version: "<$ version.current.name $>" versionHref: "<$ version.current.href $>" path: "<$ doc.path $>" category: native id: "<$ doc.name|lower|replace(' ','-') $>" title: "<@ if doc.docType == "directive" @><$ doc.name | dashCase $><@ else @><$ doc.name $><@ endif @>" header_sub_title: "<$ doc.docType | capital $> in module <$ doc.module $>" doc: "<$ doc.name $>" docType: "<$ doc.docType $>" --- <@ macro paramList(paramData) -@> <@- if paramData -@>( <@- for param in paramData -@> <$ param | escape $><@ if not loop.last @>, <@ endif @> <@- endfor @>) <@- endif @> <@- endmacro -@> <@ macro githubViewLink(doc) -@> <$ doc.fileInfo.relativePath $> (line <$ doc.location.start.line+1 $>) <@- endmacro -@> <@ macro paramTable(params, isDirective) -@> <@ for param in params @> <@ endfor @>
<@ if isDirective @>Attr<@ else @>Param<@ endif @> Type Details
<$ param.name $> <@ if param.alias @>| <$ param.alias $><@ endif @> <@ if param.type.optional @>
(optional)
<@ endif @>
<$ typeList(param.typeList) $> <$ param.description | marked $> <@ if param.default @>

(default: <$ param.default $>)

<@ endif @>
<@- endmacro -@> <@- macro functionSyntax(fn) @> <@- set sep = joiner(', ') -@> <$ fn.name $>(<@- for param in fn.params @><$ sep() $> <@- if param.type.optional @>[<@ endif -@> <$ param.name $> <@- if param.type.optional @>]<@ endif -@> <@ endfor @>) <@ if fn.alias @>(alias: <$ fn.alias $>)<@ endif @> <@ endmacro -@> <@ macro typeList(types) -@> <@ set separator = joiner("|") @> <@ for type in types @><$ separator() $><$ type | code $><@ endfor @> <@- endmacro -@> <@- macro typeInfo(fn) -@> <$ typeList(fn.typeList) $> <$ fn.description $> <@- endmacro -@> <@ block body @> <@ block content @> <@ block header @>

<@ if doc.docType == "directive" @> <$ doc.name | dashCase $> <@ else @> <$ doc.name $> <@ endif @> <@ if doc.parent @>
Child of <$ doc.parent $> <@ endif @> <@ if doc.delegate @>
Delegate: <$ doc.delegate $> <@ endif @>

Improve this doc <@ if doc.codepen @> {% include codepen.html id="<$ doc.codepen $>" %} <@ endif @> <@ endblock @> <@- if doc.decorators @> <@ for prop in doc.decorators[0].argumentInfo @>
$ cordova plugin add <$ prop.plugin $>

Repo: <$ prop.repo $>

<@ if prop.platforms @>

Supported platforms

<@ block platforms @> <@ endblock @> <@ endif @> <@ endfor @> <@ endif -@> <@ block description @> <$ doc.description | marked $> <@ endblock @> <@- if doc.directiveInfo @>

<$ doc.directiveInfo.type $>

<$ doc.directiveInfo.properties[0].name $>: <$ doc.directiveInfo.properties[0].values $>

<@ endif -@> <@ if doc.usage @>

Usage

<@ block usage @> <$ doc.usage | marked $> <@ endblock @> <@ endif @> <@ if doc.properties @>

Attributes:

<@ set hasTypes = false @> <@ for prop in doc.properties @> <@ if prop.type @> <@ set hasTypes = true @> <@ endif @> <@ endfor @> <@ if hasTypes @> <@ endif @> <@ for prop in doc.properties @> <@ if hasTypes @> <@ endif @> <@ endfor @>
AttributeTypeDescription
<$ prop.name $> <$ prop.type.name $> <$ prop.description $>
<@ endif @> <@- if doc.statics.length -@>

Static Methods

<@- for method in doc.statics @><@ if not method.internal @>

<$ functionSyntax(method) $>

<@- if method.decorators @> <@ for prop in method.decorators[0].argumentInfo @> <@ if prop.platforms @>

Platforms:

<@ endif @> <@ endfor @> <@ endif -@> <$ method.description $> <@ if method.params @> <$ paramTable(method.params) $> <@ endif @> <@ if method.this @>

Method's `this` <$ method.this $>

<@ endif @> <@ if method.returns @>
Returns: <$ typeInfo(method.returns) $>
<@ endif @> <@ endif @> <@ endfor -@> <@ endif @> <@- if doc.members and doc.members.length @>

Instance Methods

<@- for method in doc.members @>

<$ functionSyntax(method) $>

<$ method.description $> <@ if method.params @> <$ paramTable(method.params) $> <@ endif @> <@ if method.this @>

Method's `this` <$ method.this $>

<@ endif @> <@ if method.returns @>
Returns: <$ typeInfo(method.returns) $>
<@ endif @> <@ endfor -@> <@- endif -@> <@- if doc.see @>

Related

<@ for s in doc.see @> <$ s | safe $> <@- endfor -@> <@- endif -@> <@ endblock @> <@ endblock @>