diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2016-06-02 18:36:21 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2016-06-02 18:36:21 (GMT) |
commit | d3f2fcd53000fc4a09cf56c90930f8c8e2ad02b4 (patch) | |
tree | 2d1fa5fde2c5853ae0bda0e4efe2c77a3f3d2c39 /templates/html/htmljsnavtree.tpl | |
parent | 7c3126407bbb46717a4e0a09b61ee001702af7bf (diff) | |
download | Doxygen-d3f2fcd53000fc4a09cf56c90930f8c8e2ad02b4.zip Doxygen-d3f2fcd53000fc4a09cf56c90930f8c8e2ad02b4.tar.gz Doxygen-d3f2fcd53000fc4a09cf56c90930f8c8e2ad02b4.tar.bz2 |
Adding partial htmlhelp support to template system
Diffstat (limited to 'templates/html/htmljsnavtree.tpl')
-rw-r--r-- | templates/html/htmljsnavtree.tpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/html/htmljsnavtree.tpl b/templates/html/htmljsnavtree.tpl index 9970161..947b980 100644 --- a/templates/html/htmljsnavtree.tpl +++ b/templates/html/htmljsnavtree.tpl @@ -1,7 +1,7 @@ var NAVTREE = [ {% recursetree index.nav %} - [ "{{ node.name }}", {% if node.file %}"{% if node.isReference %}{{ node.externalReference }}{% endif %}{{ node.file }}{{ config.HTML_FILE_EXTENSION }}{% if node.anchor %}#{{ node.anchor }}{% endif %}"{% else %}null{% endif %},{% if not node.is_leaf_node %} [ + [ "{{ node.name }}", {% if node.file %}"{% if node.isReference %}{{ node.externalReference }}{% endif %}{{ node.file|decodeURL }}{{ config.HTML_FILE_EXTENSION }}{% if node.anchor %}#{{ node.anchor }}{% endif %}"{% else %}null{% endif %},{% if not node.is_leaf_node %} [ {{ children }} ]{% else %} null{% endif %} ]{% if not node.last %},{% endif %} {% endrecursetree %} |