diff options
author | 2019-04-12 22:08:15 -0400 | |
---|---|---|
committer | 2019-04-12 22:08:15 -0400 | |
commit | 4ab5b72d0a7b034525d8a85e0d3ae5c1b43df480 (patch) | |
tree | 25642985b0258e895be0989d118dff830a578b96 /site/_includes | |
parent | 0a8df353936211574b56d8b5a99ffc8bcba4737b (diff) |
Fix nav dropdown for mobile view
Inspired by a change in https://github.com/apache/cordova-docs. There appears to be more fixes there.
Diffstat (limited to 'site/_includes')
-rw-r--r-- | site/_includes/toc_recursive_dropdown.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/site/_includes/toc_recursive_dropdown.html b/site/_includes/toc_recursive_dropdown.html index b0983e1..2228c7e 100644 --- a/site/_includes/toc_recursive_dropdown.html +++ b/site/_includes/toc_recursive_dropdown.html @@ -8,6 +8,6 @@ </li> {% endif %} {% if entry.children %} -{% include toc_recursive_dropdown.html entries=entry.children my_entry=include.my_entry version_root=version_root %} +{% include toc_recursive_dropdown.html entries=entry.children my_entry=include.my_entry version_root=include.version_root %} {% endif %} {% endfor %} |