I just found out that when I takes out the recursive call, it works. I don't really understand, why. http://jsfiddle.net/BigZolo/9XgV8/
- <script id='recursive' type='text/mustache'>
- <li>{{title}}
- {{#children}}
- <ul>
- {{title}} // removed the recursive call
- </ul>
- {{/children}}
- </li>
- </script>