I have done quite a basic template, with a simple loop.
I don't know if this is a bug or a misinterpretation of the examples.
<ul>
<% for meaning in @meanings: %>
<li>
<strong><%= meaning.description %></strong>
</li>
<% end %>
</ul>
Actually, the rendering is correct, but there is an error in the console:
_ref is undefined
_ref = this.meanings;
for (_i = 0, _len = _ref.length; _i < _len; _i++) {
A typical data could be this one:
{"word": "submitter", "language": "en", "nature": "noun", "gender": "", "usage": "Plural submitters", "meanings": [{"description": "A person who submits (e.g. a paper for publication)", "examples": []}]}
I have done quite a basic template, with a simple loop. I don't know if this is a bug or a misinterpretation of the examples.
Actually, the rendering is correct, but there is an error in the console:
A typical data could be this one: