2016-09-09 07:47:20 -04:00
|
|
|
{% import "lib/githubLinks.html" as github -%}
|
|
|
|
{% import "lib/paramList.html" as params -%}
|
2015-09-16 02:21:55 -04:00
|
|
|
{% extends 'layout/base.template.html' %}
|
|
|
|
|
|
|
|
{% block body %}
|
2015-12-01 18:31:36 -05:00
|
|
|
include {$ relativePath(doc.path, '_util-fns') $}
|
2016-04-18 15:57:16 -04:00
|
|
|
|
2016-06-01 10:33:38 -04:00
|
|
|
{% include "layout/_what-it-does.html" %}
|
|
|
|
|
|
|
|
{% include "layout/_security-notes.html" %}
|
|
|
|
|
|
|
|
{% include "layout/_deprecated-notes.html" %}
|
|
|
|
|
|
|
|
{% include "layout/_how-to-use.html" %}
|
|
|
|
|
|
|
|
div(layout="row" layout-xs="column" class="row-margin ng-cloak")
|
2016-04-18 15:57:16 -04:00
|
|
|
div(flex="20" flex-xs="100")
|
2016-04-19 13:18:38 -04:00
|
|
|
h2(class="h2-api-docs") Variable Export
|
2016-04-25 17:28:45 -04:00
|
|
|
div(class="code-links" flex="80" flex-xs="100")
|
2016-04-18 15:57:16 -04:00
|
|
|
pre.prettyprint.no-bg
|
2015-11-03 07:23:00 -05:00
|
|
|
code.
|
2016-04-30 00:37:31 -04:00
|
|
|
export {$ doc.name $}
|
2016-04-25 17:28:45 -04:00
|
|
|
:marked
|
2016-04-27 11:47:01 -04:00
|
|
|
{%- if not doc.notYetDocumented %}
|
2016-04-25 17:28:45 -04:00
|
|
|
{$ doc.description | indentForMarkdown(6) | trimBlankLines $}
|
|
|
|
{% endif %}
|
2015-11-03 07:23:00 -05:00
|
|
|
|
2016-04-18 15:57:16 -04:00
|
|
|
p.location-badge.
|
|
|
|
exported from {@link {$ doc.moduleDoc.id $} {$doc.moduleDoc.id $} }
|
2016-09-14 02:50:02 -04:00
|
|
|
defined in {$ github.githubViewLink(doc, versionInfo) $}
|
2015-11-17 02:10:18 -05:00
|
|
|
|
2015-09-16 02:21:55 -04:00
|
|
|
{% endblock %}
|