Blame templates/html/htmljsnavindex.tpl

Packit 1c1d7e
{# input idx, entries #}
Packit 1c1d7e
var NAVTREEINDEX{{ idx }} =
Packit 1c1d7e
{
Packit 1c1d7e
{% for entry in entries %}
Packit 1c1d7e
  "{{ entry.file|decodeURL }}{{ config.HTML_FILE_EXTENSION }}{% if entry.anchor %}#{{ entry.anchor }}{% endif %}":[{% for e in entry.path %}{% if not forloop.first %}{{ e.index }}{% if not forloop.last%},{% endif %}{% endif %}{% endfor %}]{% if not forloop.last %},{%endif %}
Packit 1c1d7e
{% endfor %}
Packit 1c1d7e
};